baseStation property

GpsCoordinates get baseStation

The position of the base station. Setting this value updates the UI.

Implementation

GpsCoordinates get baseStation => _baseStation ?? data.gps;
set baseStation (GpsCoordinates value)

Implementation

set baseStation(GpsCoordinates value) {
	_baseStation = value;
	notifyListeners();
}