SubSection constructor
const
SubSection({
- required String label,
- required Widget child,
- Key? key,
- 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),
});