touchGesturesStates property

int get touchGesturesStates

Get enabled touch gestures packed.

Returns

Implementation

int get touchGesturesStates {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getTouchGesturesStates',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}
set touchGesturesStates (int enabledTouchGesturesBitfield)

Set enabled touch gestures packed.

Parameters

Implementation

set touchGesturesStates(final int enabledTouchGesturesBitfield) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setTouchGesturesStates',
    args: enabledTouchGesturesBitfield,
    dependencyId: _mapPointerId,
  );
}