CollapsedContainer constructor

const CollapsedContainer({
  1. Key? key,
  2. required Widget child,
  3. String title = '',
  4. dynamic onCollapse(
    1. bool
    )?,
  5. bool isPlugin = false,
})

Implementation

const CollapsedContainer(
    {Key? key,
    required this.child,
    this.title = '',
    this.onCollapse,
    this.isPlugin = false})
    : super(key: key);