InvoiceTransferData.fromJson constructor

InvoiceTransferData.fromJson(
  1. Object? json
)

Implementation

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