SectionCard constructor

const SectionCard({
  1. Key? key,
  2. required Widget child,
  3. required bool isDarkMode,
  4. EdgeInsets? padding,
})

Implementation

const SectionCard({
  super.key,
  required this.child,
  required this.isDarkMode,
  this.padding,
});