HashInfo.fromJson constructor

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

Implementation

factory HashInfo.fromJson(Map<String, dynamic> json) => HashInfo(
      txnHash: json["txn_hash"],
      status: json["status"],
      type: json["type"],
      txnTime: json["txn_time"],
      blockHash: json["block_hash"],
    );