cake_wallet/cw_core/lib/account.dart

10 lines
279 B
Dart
Raw Normal View History

class Account {
2022-10-12 17:09:57 +00:00
Account({required this.id, required this.label});
2022-10-12 17:09:57 +00:00
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;
2022-03-30 15:57:04 +00:00
}