explicit property

  1. @TagNumber.new(3)
bool get explicit

Whether the output resource needs to be explicitly set in the instance. If it is false, the processor will automatically generate it if required.

Implementation

@$pb.TagNumber(3)
$core.bool get explicit => $_getBF(2);
  1. @TagNumber.new(3)
set explicit (bool v)

Implementation

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