ADAStakeAccountMIRHistoryResponse.fromJson constructor

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

Implementation

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