AndroidViewSurface constructor

const AndroidViewSurface(
  1. {Key? key,
  2. required AndroidViewController controller,
  3. required PlatformViewHitTestBehavior hitTestBehavior,
  4. required Set<Factory<OneSequenceGestureRecognizer>> gestureRecognizers}
)

Construct an AndroidPlatformViewSurface.

Implementation

const AndroidViewSurface({
  super.key,
  required this.controller,
  required this.hitTestBehavior,
  required this.gestureRecognizers,
});