DemoSection constructor

const DemoSection({
  1. Key? key,
  2. List<Widget> children = const [],
  3. String title = "",
})

Implementation

const DemoSection({Key? key, this.children = const [], this.title = ""})
    : super(key: key);