mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-25 21:05:52 +08:00
12 lines
233 B
Dart
12 lines
233 B
Dart
class NftCertificate {
|
|
String? detailUrl;
|
|
|
|
NftCertificate({this.detailUrl});
|
|
|
|
factory NftCertificate.fromJson(Map<String, dynamic> json) {
|
|
return NftCertificate(
|
|
detailUrl: json['detail_url'] as String?,
|
|
);
|
|
}
|
|
}
|