GasPrice.fromJson constructor
Implementation
factory GasPrice.fromJson(Map<String, dynamic> json) => GasPrice(
standard: json['standard']?.toString().bigInt(),
fast: json['fast']?.toString().bigInt(),
instant: json['instant']?.toString().bigInt(),
);