pointOfInterest property

PointWithUnit? get pointOfInterest

Implementation

PointWithUnit? get pointOfInterest {
  return _pointOfInterest;
}
set pointOfInterest (PointWithUnit? newValue)

Implementation

set pointOfInterest(PointWithUnit? newValue) {
  _pointOfInterest = newValue;
  _controller.updateMode();
}