FlagStatus property

ItemFlagStatus? FlagStatus
Gets or sets the flag status.

Implementation

ItemFlagStatus? get FlagStatus => this.flagStatus;
void FlagStatus=(ItemFlagStatus? value)

Implementation

set FlagStatus(ItemFlagStatus? value) {
  if (this.CanSetFieldValue(this.flagStatus, value)) {
    this.flagStatus = value;
    this.Changed();
  }
}