primary property

  1. @TagNumber.new(4)
bool get primary

Primary states whether this domain is the primary domain of the instance. Each instance must have exactly one primary domain. The primary domain is used for various purposes and acts as fallback in those cases, e.g if no explicit domain is specified.

Implementation

@$pb.TagNumber(4)
$core.bool get primary => $_getBF(3);
  1. @TagNumber.new(4)
set primary (bool value)

Implementation

@$pb.TagNumber(4)
set primary($core.bool value) => $_setBool(3, value);