mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
9 lines
No EOL
238 B
Dart
9 lines
No EOL
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,
|
|
);
|
|
} |