Position constructor

Position(
  1. int imageWidth,
  2. int imageHeight,
  3. int topLeftX,
  4. int topLeftY,
  5. int topRightX,
  6. int topRightY,
  7. int bottomLeftX,
  8. int bottomLeftY,
  9. int bottomRightX,
  10. int bottomRightY,
)

Implementation

Position(
  this.imageWidth,
  this.imageHeight,
  this.topLeftX,
  this.topLeftY,
  this.topRightX,
  this.topRightY,
  this.bottomLeftX,
  this.bottomLeftY,
  this.bottomRightX,
  this.bottomRightY,
);