SectieCard constructor

const SectieCard({
  1. Key? key,
  2. required String titel,
  3. required IconData icoon,
  4. required List<Widget> children,
})

Implementation

const SectieCard({
  super.key,
  required this.titel,
  required this.icoon,
  required this.children,
});