disableFastLoading property
Check if fast loading is disabled or not
Returns
True if fast loading is disabled, false otherwise
Implementation
bool get disableFastLoading {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'disableFastLoading',
);
return resultString['result'];
}
Disable / enable fast loading
Parameters
- IN enable True to enable, false to disable.
Throws
- An exception if it fails.
Implementation
set disableFastLoading(bool enable) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setDisableFastLoading',
args: enable,
);
}