disableFastLoading property
Check whether fast loading is disabled.
Returns
- True if fast loading is disabled, false otherwise.
Implementation
bool get disableFastLoading {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'disableFastLoading',
dependencyId: _mapPointerId,
);
return resultString['result'];
}
Enable or disable fast loading.
Parameters
disable: (bool) True to disable fast loading, false to enable it.
Implementation
set disableFastLoading(bool disable) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setDisableFastLoading',
args: disable,
dependencyId: _mapPointerId,
);
}