BorderSides constructor

const BorderSides({
  1. bool top = true,
  2. bool bottom = true,
  3. bool left = true,
  4. bool right = true,
})

Creates border side visibility settings.

Implementation

const BorderSides({
  this.top = true,
  this.bottom = true,
  this.left = true,
  this.right = true,
});