isTouchGestureEnabled method
- TouchGestures gesture
Check if touch gesture is enabled.
Parameters
- IN obj The TouchGestures to check
Returns
- True if the touch gesture is enabled
Throws
- An exception if it fails.
Implementation
bool isTouchGestureEnabled(final TouchGestures gesture) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'isTouchGestureEnabled',
args: gesture.id,
);
return resultString['result'];
}