OverflowEdge constructor

OverflowEdge({
  1. required bool top,
  2. required bool bottom,
  3. required bool right,
  4. required bool left,
})

Implementation

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