ADATransactionWithdrawalResponse.fromJson constructor

ADATransactionWithdrawalResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ADATransactionWithdrawalResponse.fromJson(Map<String, dynamic> json) {
  return ADATransactionWithdrawalResponse(
    address: json['address'],
    amount: json['amount'],
  );
}