difference method

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

Implementation

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