TransactionCost.fromJson constructor
Implementation
factory TransactionCost.fromJson(Map<String, dynamic> data) {
return TransactionCost(
gasPrice: data['gasPrice'],
gasUsed: data['gasUsed'],
minFee: data['minFee'],
maxFee: data['maxFee'],
);
}