FunctionEncodingOutput constructor
FunctionEncodingOutput({})
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;
}