emptyPointSettings property

EmptyPointSettings get emptyPointSettings

Implementation

EmptyPointSettings get emptyPointSettings => _emptyPointSettings;
set emptyPointSettings (EmptyPointSettings value)

Implementation

set emptyPointSettings(EmptyPointSettings value) {
  if (_emptyPointSettings != value) {
    if (emptyPointSettings.mode != value.mode) {
      _emptyPointSettings = value;
      canUpdateOrCreateSegments = true;
      markNeedsUpdate();
    } else {
      _emptyPointSettings = value;
      markNeedsSegmentsPaint();
    }
  }
}