Border constructor

const Border({
  1. String top = '',
  2. String right = '',
  3. String bottom = '',
  4. String left = '',
})

Implementation

const Border({
  this.top = '',
  this.right = '',
  this.bottom = '',
  this.left = '',
});