selectable property

bool? get selectable

Implementation

bool? get selectable => _locationSettings?.selectable;
set selectable (bool? selectable)

Implementation

set selectable(bool? selectable) {
  _locationSettings?.selectable = selectable;
  _locationSettings ??= MPLocationSettings(selectable: selectable);
  UtilPlatform.instance.setLocationSettings(_locationSettings!);
}