mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-25 13:09:32 +00:00
14 lines
396 B
Dart
14 lines
396 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,
|
|
assetId: json['asset_id'] as String,
|
|
isIncome: json['is_income'] as bool,
|
|
);
|
|
}
|