mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
10 lines
No EOL
279 B
Dart
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;
|
|
} |