cake_wallet/lib/src/domain/monero/account.dart

17 lines
381 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'package:cw_monero/structs/account_row.dart';
class Account {
final int id;
final String label;
Account({this.id, this.label});
Account.fromMap(Map map)
: this.id = map['id'] == null ? 0 : int.parse(map['id']),
this.label = map['label'] ?? '';
Account.fromRow(AccountRow row)
: this.id = row.getId(),
this.label = row.getLabel();
}