BoxStyle constructor

const BoxStyle({
  1. Color backgroundColor = Colors.transparent,
  2. Border? border,
  3. BorderRadiusGeometry? borderRadius,
  4. Gradient? gradient,
  5. List<BoxShadow>? boxShadow,
  6. BoxShape shape = BoxShape.rectangle,
})

Implementation

const BoxStyle({
  this.backgroundColor = Colors.transparent,
  this.border,
  this.borderRadius,
  this.gradient,
  this.boxShadow,
  this.shape = BoxShape.rectangle,
});