disableFastLoading property

bool get disableFastLoading

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',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}
set disableFastLoading (bool enable)

Disable / enable fast loading

Parameters

  • IN enable True to enable, false to disable.

Implementation

set disableFastLoading(bool enable) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setDisableFastLoading',
    args: enable,
    dependencyId: _mapPointerId,
  );
}