HashInfo.fromJson constructor
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"],
);