ChargeTransferData.fromJson constructor

ChargeTransferData.fromJson(
  1. Object? json
)

Implementation

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