cake_wallet/cw_zano/lib/api/model/subtransfer.dart
2024-08-07 12:32:47 +00:00

16 lines
489 B
Dart

import 'package:cw_zano/zano_formatter.dart';
class Subtransfer {
final BigInt 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: ZanoFormatter.bigIntFromDynamic(json['amount']),
assetId: json['asset_id'] as String? ?? '',
isIncome: json['is_income'] as bool? ?? false,
);
}