CForm constructor
CForm({})
Implementation
CForm({
Key? key,
required List<Widget> children,
bool enable = true,
Widget? action,
CFormType type = CFormType.blank,
}) : props = CFormProps(
enable: enable,
children: children,
type: type,
action: action,
),
super(key: key);