cake_wallet/cw_core/lib/account.dart
2022-10-12 13:09:57 -04:00

10 lines
No EOL
279 B
Dart

class Account {
Account({required this.id, required this.label});
Account.fromMap(Map<String, Object> map)
: this.id = map['id'] == null ? 0 : int.parse(map['id'] as String),
this.label = (map['label'] ?? '') as String;
final int id;
final String label;
}