cursorEnabled property

bool get cursorEnabled

Check if cursor is enabled.

By default it is false.

Returns

  • True if the cursor is enabled, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get cursorEnabled {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'isCursorEnabled',
  );

  return resultString['result'];
}