FuContainer.none constructor

const FuContainer.none({
  1. Key? key,
  2. required Widget child,
  3. BorderRadius? borderRadius,
  4. EdgeInsetsGeometry? padding,
  5. double? borderRadiusAll = 0,
  6. double? paddingAll = 0,
  7. Border? border,
  8. bool bordered = false,
  9. Clip? clipBehavior,
  10. Color? color,
  11. BoxShape shape = BoxShape.rectangle,
  12. double? width,
  13. double? height,
  14. AlignmentGeometry? alignment,
  15. GestureTapCallback? onTap,
  16. double? marginAll,
  17. EdgeInsetsGeometry? margin,
  18. Color? splashColor,
})

Implementation

const FuContainer.none(
    {Key? key,
    required this.child,
    this.borderRadius,
    this.padding,
    this.borderRadiusAll = 0,
    this.paddingAll = 0,
    this.border,
    this.bordered = false,
    this.clipBehavior,
    this.color,
    this.shape = BoxShape.rectangle,
    this.width,
    this.height,
    this.alignment,
    this.onTap,
    this.marginAll,
    this.margin,
    this.splashColor})
    : super(key: key);