showpoints property

bool get showpoints

Implementation

bool get showpoints => _showpoints?.get() ?? true;
set showpoints (dynamic v)

Implementation

set showpoints(dynamic v) {
  if (_showpoints != null) {
    _showpoints!.set(v);
  } else if (v != null) {
    _showpoints =
        BooleanObservable(Binding.toKey(id, 'showpoints'), v, scope: scope);
  }
}