CRow constructor

CRow({
  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. MainAxisSize? mainAxisSize,
  10. Alignment? alignment,
  11. Border? border,
  12. int? flex,
  13. Style? style,
  14. double? gap,
  15. dynamic onTap()?,
  16. bool? expanded,
  17. Decoration? decoration,
  18. bool? visible,
  19. double? borderRadius,
  20. Color? backgroundColor,
  21. String? tag,
})

Implementation

CRow(
    {super.key,
    required super.children,
    super.margin,
    super.width,
    super.height,
    super.padding,
    super.crossAxisAlignment,
    super.mainAxisAlignment,
    super.mainAxisSize,
    super.alignment,
    super.border,
    super.flex,
    super.style,
    super.gap,
    super.onTap,
    super.expanded,
    super.decoration,
    super.visible,
    super.borderRadius,
    super.backgroundColor,
    super.tag});