AddressMintInfo.fromJson constructor
Implementation
factory AddressMintInfo.fromJson(Map<String, dynamic> json) {
print('JSON MINT ADDRESS ADATA ${json}');
return AddressMintInfo(
confirmed: json['confirmed'],
epoch: json['epoch'],
hash: json['hash'],
miner: json['miner'],
outputValue: json['output_value'],
timestamp: json['timestamp']);
}