mapLabelsFading property
Get the map labels fading state
Returns
True if map labels are in fading state, false otherwise
Implementation
bool get mapLabelsFading {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getMapLabelsFading',
);
return resultString['result'];
}
Set the map labels fading effect.
Parameters
- IN enable True to enable, false to disable.
Throws
- An exception if it fails.
Implementation
set mapLabelsFading(bool enable) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setMapLabelsFading',
args: enable,
);
}