FunctionEncodingOutput constructor

FunctionEncodingOutput({
  1. String? functionType,
  2. List<int>? encoded,
  3. AbiError? error,
  4. String? errorMessage,
})

Implementation

factory FunctionEncodingOutput({
  $core.String? functionType,
  $core.List<$core.int>? encoded,
  AbiError? error,
  $core.String? errorMessage,
}) {
  final $result = create();
  if (functionType != null) {
    $result.functionType = functionType;
  }
  if (encoded != null) {
    $result.encoded = encoded;
  }
  if (error != null) {
    $result.error = error;
  }
  if (errorMessage != null) {
    $result.errorMessage = errorMessage;
  }
  return $result;
}