lowEndCPUOptimizations property
Get low end CPU optimizations flag.
Returns
- True if optimizations are enabled, false otherwise
Throws
- An exception if it fails.
Implementation
bool get lowEndCPUOptimizations {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewExtensions',
'getLowEndCPUOptimizations',
);
return resultString['result'];
}
Enable optimizations for low end CPU.
Parameters
- IN bEnable True to enable optimizations, false to disable
Throws
- An exception if it fails.
Implementation
set lowEndCPUOptimizations(final bool bEnable) {
objectMethod(
_pointerId,
'MapViewExtensions',
'setLowEndCPUOptimizations',
args: bEnable,
);
}