MainDropDown constructor

MainDropDown({
  1. bool isExpanded = false,
  2. required Widget title,
  3. required Widget child,
  4. Key? key,
})

Implementation

MainDropDown(
    {this.isExpanded = false,
    required this.title,
    required this.child,
    Key? key})
    : super(body: Text('never'), headerBuilder: (c, b) => Text('never'));