TxParam.fromJson constructor

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

Implementation

TxParam.fromJson(Map<String, dynamic> json)
    : to = json['to'],
      chainId = json['chainId'],
      value = json['value'],
      data = json['data'],
      gasLimit = json['gasLimit'],
      gasPrice = json['gasPrice'],
      nonce = json['nonce'];