lowEndCPUOptimizations property

bool get lowEndCPUOptimizations

Get low end CPU optimizations flag.

Returns

  • True if optimizations are enabled, false otherwise

Implementation

bool get lowEndCPUOptimizations {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewExtensions',
    'getLowEndCPUOptimizations',
    dependencyId: _mapControllerId,
  );

  return resultString['result'];
}
set lowEndCPUOptimizations (bool bEnable)

Enable optimizations for low end CPU.

Parameters

  • IN bEnable True to enable optimizations, false to disable

Implementation

set lowEndCPUOptimizations(final bool bEnable) {
  objectMethod(
    _pointerId,
    'MapViewExtensions',
    'setLowEndCPUOptimizations',
    args: bEnable,
    dependencyId: _mapControllerId,
  );
}