BoundingBox constructor

BoundingBox({
  1. double? height,
  2. double? left,
  3. double? top,
  4. double? width,
})

Implementation

BoundingBox({
  this.height,
  this.left,
  this.top,
  this.width,
});