required property

  1. @TagNumber(3)
bool required

Whether the current input channel is required by the processor. For example, for a processor with required video input and optional audio input, if video input is missing, the application will be rejected while the audio input can be missing as long as the video input exists.

Implementation

@$pb.TagNumber(3)
$core.bool get required => $_getBF(2);
  1. @TagNumber(3)
void required=(bool v)

Implementation

@$pb.TagNumber(3)
set required($core.bool v) { $_setBool(2, v); }