ValueDecodingInput constructor

ValueDecodingInput({
  1. List<int>? encoded,
  2. String? paramType,
})

Implementation

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