preferences property
Get access to this view's preferences.
Returns
MapViewPreferences object
Throws
- An exception if it fails.
Implementation
MapViewPreferences get preferences {
if (_preferences == null) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapView',
'preferences',
);
_preferences = MapViewPreferences.init(
resultString['result'],
_mapId,
_pointerId,
);
return _preferences!;
}
return _preferences!;
}