CForm constructor

CForm({
  1. Key? key,
  2. required List<Widget>? children,
  3. EdgeInsetsGeometry? margin,
  4. double? width,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. CrossAxisAlignment? crossAxisAlignment,
  8. MainAxisAlignment? mainAxisAlignment,
  9. Border? border,
  10. int? flex,
  11. Style? style,
  12. double? gap = 8,
  13. dynamic onTap()?,
  14. Color? backgroundColor,
})

Implementation

CForm(
    {super.key,
    required super.children,
    super.margin,
    super.width,
    super.height,
    super.padding,
    super.crossAxisAlignment,
    super.mainAxisAlignment,
    super.border,
    super.flex,
    super.style,
    super.gap = 8,
    super.onTap,
    super.backgroundColor});