I have gestureRecognizers parameter set like this:
child: GoogleMap(
initialCameraPosition: widget.cameraPosition!,
gestureRecognizers: <Factory<OneSequenceGestureRecognizer>>[
new Factory<OneSequenceGestureRecognizer>(
() => new EagerGestureRecognizer(),
),
].toSet(),
but it's allowing to scroll maps only with one finger, but I want it possible only with two? I heard it's possible but how?