Files
PiliPlus/lib/models_new/space/space/nft_show_module.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

25 lines
606 B
Dart

import 'package:PiliPlus/models_new/space/space/nft.dart';
class NftShowModule {
int? total;
String? artsMoreJump;
List<Nft>? nfts;
String? floorTitle;
NftShowModule({
this.total,
this.artsMoreJump,
this.nfts,
this.floorTitle,
});
factory NftShowModule.fromJson(Map<String, dynamic> json) => NftShowModule(
total: json['total'] as int?,
artsMoreJump: json['arts_more_jump'] as String?,
nfts: (json['nfts'] as List<dynamic>?)
?.map((e) => Nft.fromJson(e as Map<String, dynamic>))
.toList(),
floorTitle: json['floor_title'] as String?,
);
}