intersection method

  1. @override
EnumSet<Gesture> intersection(
  1. EnumSet<Gesture> other
)

Implementation

@override
EnumSet<Gesture> intersection(EnumSet<Gesture> other) =>
    GestureEnumSet.fromRawValue(this.rawValue & other.rawValue);