onLongPressEnd method
Implementation
@mustCallSuper
void onLongPressEnd(LongPressEndEvent event) {
_records.removeWhere((record) {
if (record.pointerId == event.pointerId) {
record.component.onLongPressEnd(event);
return true;
}
return false;
});
}