drawFPS property

bool get drawFPS

Get frames-per-second draw state.

Returns

True if frames-per-second drawing is enabled, false otherwise.

Implementation

bool get drawFPS {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getDrawFPS',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}