emptyPointSettings property

EmptyPointSettings emptyPointSettings

Implementation

EmptyPointSettings get emptyPointSettings => _emptyPointSettings;
void 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();
    }
  }
}