SectionCard constructor

const SectionCard({
  1. Key? key,
  2. required List<Widget> children,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Implementation

const SectionCard({
  super.key,
  required this.children,
  this.padding = const EdgeInsets.all(16),
});