resolve method
- @protected
- @mustCallSuper
@mustCallSuper, @protected
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>.from(_entries.values);
_entries.clear();
for (GestureArenaEntry entry in localEntries)
entry.resolve(disposition);
}