mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
16 lines
403 B
Dart
16 lines
403 B
Dart
import 'package:cw_monero/structs/account_row.dart';
|
|
|
|
class Account {
|
|
Account({this.id, this.label});
|
|
|
|
Account.fromMap(Map map)
|
|
: this.id = map['id'] == null ? 0 : int.parse(map['id'] as String),
|
|
this.label = (map['label'] ?? '') as String;
|
|
|
|
Account.fromRow(AccountRow row)
|
|
: this.id = row.getId(),
|
|
this.label = row.getLabel();
|
|
|
|
final int id;
|
|
final String label;
|
|
}
|