BoxEdge constructor

const BoxEdge([
  1. num? left,
  2. num? top,
  3. num? right,
  4. num? bottom,
])

Creates a box edge with the specified left, top, right, and bottom width.

Implementation

const BoxEdge([this.left, this.top, this.right, this.bottom]);