CForm constructor

CForm({
  1. Key? key,
  2. required List<Widget> children,
  3. bool enable = true,
  4. Widget? action,
  5. CFormType type = CFormType.blank,
})

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);