BorderAttribute constructor

const BorderAttribute({
  1. BorderSideAttribute? left,
  2. BorderSideAttribute? top,
  3. BorderSideAttribute? right,
  4. BorderSideAttribute? bottom,
})

Implementation

const BorderAttribute({
  this.left,
  this.top,
  this.right,
  this.bottom,
});