SkyBox constructor

const SkyBox({
  1. Key? key,
  2. required Widget? child,
  3. EdgeInsetsGeometry? margin,
  4. EdgeInsetsGeometry? padding,
  5. BorderRadiusGeometry? borderRadius,
  6. double? width,
  7. double? height,
  8. VoidCallback? onPressed,
  9. Color? color,
  10. Gradient? gradient,
  11. Color? borderColor,
  12. double elevation = 4,
})

Implementation

const SkyBox({
  Key? key,
  required this.child,
  this.margin,
  this.padding,
  this.borderRadius,
  this.width,
  this.height,
  this.onPressed,
  this.color,
  this.gradient,
  this.borderColor,
  this.elevation = 4,
}) : super(key: key);