Boundary constructor

Boundary({
  1. bool left = false,
  2. bool right = false,
  3. bool top = false,
  4. bool bottom = false,
})

Implementation

Boundary({
  this.left = false,
  this.right = false,
  this.top = false,
  this.bottom = false,
});