dev
dart 9 lines 245 Bytes
Raw
1 class StoreResult {
2 final int walletFileSize;
3
4 StoreResult({required this.walletFileSize});
5
6 factory StoreResult.fromJson(Map<String, dynamic> json) => StoreResult(
7 walletFileSize: json['wallet_file_size'] as int? ?? 0,
8 );
9 }