CongestionModel.fromJson constructor

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

Implementation

factory CongestionModel.fromJson(Map<String, dynamic> json) =>
    CongestionModel(
        safeGasPrice: json["PafeGasPrice"],
        proposeGasPrice: json["ProposeGasPrice"],
        fastGasPrice: json["FastGasPrice"]);