CustomBorderSide constructor

CustomBorderSide({
  1. Color? color = const Color(0xFF000000),
  2. double width = 1.0,
  3. BorderStyle style = BorderStyle.none,
})

Implementation

CustomBorderSide({
  this.color = const Color(0xFF000000),
  this.width = 1.0,
  this.style = BorderStyle.none,
}) : assert(width >= 0.0);