Border constructor

Border({
  1. Color? color,
  2. ColorStyle? colorStyle,
  3. String? style,
  4. int? width,
})

Implementation

Border({
  this.color,
  this.colorStyle,
  this.style,
  this.width,
});