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