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