ExpandableWidget.manual constructor

const ExpandableWidget.manual({
  1. required bool expand,
  2. required TickerProvider? vsync,
  3. required Widget child,
  4. Duration animationDuration = const Duration(milliseconds: 150),
  5. Alignment alignment = Alignment.topCenter,
  6. Key? key,
})

Manual control Show and hide child completely.

Implementation

const ExpandableWidget.manual(
    {required this.expand,
    required this.vsync,
    required this.child,
    this.animationDuration = const Duration(milliseconds: 150),
    this.alignment = Alignment.topCenter,
    Key? key})
    : arrowColor = null,
      arrowSize = 24,
      arrowWidgetBuilder = null,
      arrowWidgetHeight = null,
      maxHeight = -1,
      mode = _ExpandMode.Manual,
      super(key: key);