mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 21:19:37 +00:00
9 lines
238 B
Dart
9 lines
238 B
Dart
|
class StoreResult {
|
||
|
final int walletFileSize;
|
||
|
|
||
|
StoreResult({required this.walletFileSize});
|
||
|
|
||
|
factory StoreResult.fromJson(Map<String, dynamic> json) => StoreResult(
|
||
|
walletFileSize: json['wallet_file_size'] as int,
|
||
|
);
|
||
|
}
|