Borders constructor

Borders({
  1. Border? bottom,
  2. Border? left,
  3. Border? right,
  4. Border? top,
})

Implementation

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