1. override
void acceptGesture(int pointer)

Called when this member wins the arena for the given pointer id.

Source

@override
void acceptGesture(int pointer) {
  if (_state != ScaleState.accepted) {
    _state = ScaleState.accepted;
    _update(false, pointer);
  }
}