drawFPS property
Get frames per second draw state.
Returns
- True if frames per second draw is enabled, false otherwise
Throws
- An exception if it fails.
Implementation
bool get drawFPS {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getDrawFPS',
);
return resultString['result'];
}