FTooltipManagedControl constructor

const FTooltipManagedControl({
  1. FTooltipController? controller,
  2. bool? initial,
  3. ValueChanged<bool>? onChange,
})

Creates a FTooltipControl.

Implementation

const FTooltipManagedControl({this.controller, this.initial, this.onChange})
  : assert(
      controller == null || initial == null,
      'Cannot provide both initially shown and controller. Pass initially shown to the controller instead.',
    ),
    super._();