ScreenBounds constructor

ScreenBounds({
  1. int? right,
  2. int? top,
  3. int? left,
  4. int? bottom,
  5. int? width,
  6. int? height,
})

Implementation

ScreenBounds({
  this.right,
  this.top,
  this.left,
  this.bottom,
  this.width,
  this.height,
});