PumaBox constructor

PumaBox({
  1. Key? key,
  2. Widget? child,
  3. double radius = 10,
  4. Color? backgroundColor,
  5. Color borderColor = Colors.transparent,
  6. double borderWidth = 1,
  7. PumaDensity density = PumaDensity.md,
})

Implementation

PumaBox({
  Key? key,
  this.child,
  this.radius = 10,
  this.backgroundColor,
  this.borderColor = Colors.transparent,
  this.borderWidth = 1,
  this.density = PumaDensity.md,
}) : super(key: key);