ContractCallDecodingInput constructor

ContractCallDecodingInput({
  1. List<int>? encoded,
  2. String? smartContractAbiJson,
})

Implementation

factory ContractCallDecodingInput({
  $core.List<$core.int>? encoded,
  $core.String? smartContractAbiJson,
}) {
  final $result = create();
  if (encoded != null) {
    $result.encoded = encoded;
  }
  if (smartContractAbiJson != null) {
    $result.smartContractAbiJson = smartContractAbiJson;
  }
  return $result;
}