BoxBorder constructor

const BoxBorder({
  1. double width = 1.0,
  2. String color = '#000000',
  3. BorderStyle style = BorderStyle.solid,
})

Implementation

const BoxBorder({
  this.width = 1.0,
  this.color = '#000000',
  this.style = BorderStyle.solid,
});