Border constructor

const Border({
  1. required Color color,
  2. double width = 1,
  3. String style = 'solid',
})

Implementation

const Border({
  required this.color,
  this.width = 1,
  this.style = 'solid',
});