ContractEstimateDeployResponseResult.fromJson constructor

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

Implementation

factory ContractEstimateDeployResponseResult.fromJson(
        Map<String, dynamic> json) =>
    ContractEstimateDeployResponseResult(
      contract: json["contract"],
      method: json["method"],
      success: json["success"],
      gasUsed: json["gasUsed"],
      txHash: json["txHash"],
      error: json["error"],
      gasCost: json["gasCost"],
      txFee: json["txFee"],
    );