FTooltipManagedControl constructor

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

Creates a FTooltipControl.

Implementation

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