OverflowBounds constructor

const OverflowBounds({
  1. required double top,
  2. required double bottom,
  3. required double left,
  4. required double right,
})

Creates an OverflowBounds with the specified overflow amounts.

All parameters default to 0 if not specified, indicating no overflow.

Implementation

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