TopicContainerWidget constructor

const TopicContainerWidget({
  1. Key? key,
  2. DecorationImage? image,
  3. double? height,
  4. double? width,
  5. String? title,
  6. required AppModel app,
  7. required bool collapsible,
  8. required bool collapsed,
  9. required List<Widget> children,
  10. required BackgroundModel? bdm,
})

Implementation

const TopicContainerWidget(
    {super.key,
    this.image,
    this.height,
    this.width,
    this.title,
    required this.app,
    required this.collapsible,
    required this.collapsed,
    required this.children,
    required this.bdm});