SubSection constructor

const SubSection({
  1. required String label,
  2. required Widget child,
  3. Key? key,
  4. EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(20, 0, 20, 16),
})

Implementation

const SubSection({
  required this.label, required this.child, super.key,
  this.padding = const EdgeInsets.fromLTRB(20, 0, 20, 16),
});