form_sec constructor

const form_sec(
  1. {Key? key,
  2. required SectionId header,
  3. required Widget child,
  4. Color? backgroundColor}
)

Implementation

const form_sec(
    {super.key,
    required this.header,
    required this.child,
    this.backgroundColor});