resolve method

  1. @protected
  2. @mustCallSuper
void resolve(
  1. GestureDisposition disposition
)

Resolves this recognizer's participation in each gesture arena with the given disposition.

Implementation

@protected
@mustCallSuper
void resolve(GestureDisposition disposition) {
  final List<GestureArenaEntry> localEntries = List<GestureArenaEntry>.of(_entries.values);
  _entries.clear();
  for (final GestureArenaEntry entry in localEntries) {
    entry.resolve(disposition);
  }
}