cursorEnabled property

bool get cursorEnabled

Check if cursor is enabled.

By default it is false.

Returns

  • True if the cursor is enabled, false otherwise.

Implementation

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

  return resultString['result'];
}