ADATransactionSummaryInfoResponse.fromJson constructor

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

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'],
  );
}