CFormProps constructor

CFormProps({
  1. required bool enable,
  2. required List<Widget> children,
  3. required CFormType type,
  4. required Widget? action,
})

Implementation

CFormProps({
  required this.enable,
  required this.children,
  required this.type,
  required this.action,
});