TizenView constructor

const TizenView({
  1. Key? key,
  2. required String viewType,
  3. PlatformViewCreatedCallback? onPlatformViewCreated,
  4. PlatformViewHitTestBehavior hitTestBehavior = PlatformViewHitTestBehavior.opaque,
  5. TextDirection? layoutDirection,
  6. Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
  7. dynamic creationParams,
  8. MessageCodec? creationParamsCodec,
  9. Clip clipBehavior = Clip.hardEdge,
})

Implementation

const TizenView({
  super.key,
  required this.viewType,
  this.onPlatformViewCreated,
  this.hitTestBehavior = PlatformViewHitTestBehavior.opaque,
  this.layoutDirection,
  this.gestureRecognizers,
  this.creationParams,
  this.creationParamsCodec,
  this.clipBehavior = Clip.hardEdge,
})  : assert(viewType != null),
      assert(hitTestBehavior != null),
      assert(creationParams == null || creationParamsCodec != null),
      assert(clipBehavior != null);