ADATransactionSummaryInfoResponse.fromJson constructor
Implementation
factory ADATransactionSummaryInfoResponse.fromJson(
Map<String, dynamic> json) {
return ADATransactionSummaryInfoResponse(
txHash: json['tx_hash'],
txIndex: json['tx_index'],
blockHeight: json['block_height'],
blockTime: json['block_time'],
);
}