PlatformViewSurface constructor

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

Construct a PlatformViewSurface.

Implementation

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