GasPrice.fromJson constructor

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

Implementation

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