SetGesturesEnabled method

void SetGesturesEnabled(
  1. Iterable<Gesture> flags
)

Enable a set of gestures using flags Gesture

Implementation

void SetGesturesEnabled(
  Iterable<Gesture> flags,
) => run(
  () => _debugLabels.SetGesturesEnabled(flags),
  () => _flat.SetGesturesEnabled(
    rl.Utils.EnumsAsFlagsOr(flags),
  ),
);