CFixedBottom constructor

CFixedBottom({
  1. Key? key,
  2. Widget? body,
  3. List<Widget>? children,
  4. required Widget bottom,
  5. EdgeInsetsGeometry? margin,
  6. double? width,
  7. double? height,
  8. EdgeInsetsGeometry? padding,
  9. Border? border,
  10. int? flex,
  11. Style? style,
  12. dynamic onTap()?,
  13. bool? expanded,
  14. Decoration? decoration,
  15. bool? visible,
  16. double? borderRadius,
  17. Color? backgroundColor,
  18. String? tag,
})

Implementation

CFixedBottom(
    {super.key,
    this.body,
    super.children,
    required this.bottom,
    super.margin,
    super.width,
    super.height,
    super.padding,
    super.border,
    super.flex,
    super.style,
    super.onTap,
    super.expanded,
    super.decoration,
    super.visible,
    super.borderRadius,
    super.backgroundColor,
    super.tag});