isPrimary property

bool isPrimary

Implementation

bool get isPrimary => _getAttribute<bool>(kPrimary, false);
void isPrimary=(bool? x)

pass null to remove key from attributes

Implementation

set isPrimary(bool? x) =>
    (x == null) ? _attributes.remove(kPrimary) : _attributes[kPrimary] = x;