mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
14 lines
419 B
Dart
14 lines
419 B
Dart
class Subtransfer {
|
|
final int amount;
|
|
final String assetId;
|
|
final bool isIncome;
|
|
|
|
Subtransfer(
|
|
{required this.amount, required this.assetId, required this.isIncome});
|
|
|
|
factory Subtransfer.fromJson(Map<String, dynamic> json) => Subtransfer(
|
|
amount: json['amount'] as int? ?? 0,
|
|
assetId: json['asset_id'] as String? ?? '',
|
|
isIncome: json['is_income'] as bool? ?? false,
|
|
);
|
|
}
|