mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 20:54:33 +00:00
14 lines
322 B
Dart
14 lines
322 B
Dart
|
class InscriptionLink {
|
||
|
final String href;
|
||
|
final String title;
|
||
|
|
||
|
InscriptionLink({required this.href, required this.title});
|
||
|
|
||
|
factory InscriptionLink.fromJson(Map<String, dynamic> json) {
|
||
|
return InscriptionLink(
|
||
|
href: json['href'] as String ?? '',
|
||
|
title: json['title'] as String ?? '',
|
||
|
);
|
||
|
}
|
||
|
}
|