UiBorderBox constructor

const UiBorderBox({
  1. Key? key,
  2. required Color color,
  3. double dashWidth = 8.0,
  4. double dashSpace = 8.0,
  5. double borderRadius = 12.0,
  6. String? text,
  7. BorderShape shape = BorderShape.rectangle,
  8. BorderStyleType borderStyle = BorderStyleType.solid,
  9. Gradient? gradient,
  10. required Widget child,
})

Implementation

const UiBorderBox({
  super.key,
  required this.color,
  this.dashWidth = 8.0,
  this.dashSpace = 8.0,
  this.borderRadius = 12.0,
  this.text,
  this.shape = BorderShape.rectangle,
  this.borderStyle = BorderStyleType.solid,
  this.gradient,
  required this.child,
});