TransferData.fromJson constructor
TransferData.fromJson(
- Object? json
Implementation
factory TransferData.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return TransferData(
amount: map['amount'] == null ? null : (map['amount'] as num).toInt(),
destination: AccountOrId.fromJson(map['destination']),
);
}