Rectangle2D constructor

Rectangle2D({
  1. double? originX,
  2. double? originY,
  3. double? width,
  4. double? height,
})

Implementation

Rectangle2D({
  this.originX,
  this.originY,
  this.width,
  this.height,
});