FxContainer.none constructor

const FxContainer.none({
  1. Key? key,
  2. 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. bool enableBorderRadius = true,
  11. Color? color,
  12. BoxShape shape = BoxShape.rectangle,
  13. double? width,
  14. double? height,
  15. AlignmentGeometry? alignment,
  16. GestureTapCallback? onTap,
  17. double? marginAll,
  18. EdgeInsetsGeometry? margin,
  19. Color? splashColor,
  20. Color? borderColor,
})

Implementation

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