RectangleD constructor

RectangleD({
  1. Pointer<RectangleC>? originalPointer,
  2. double x = 0,
  3. double y = 0,
  4. double width = 0,
  5. double height = 0,
})

Implementation

RectangleD({
  super.originalPointer,
  this.x = 0,
  this.y = 0,
  this.width = 0,
  this.height = 0,
});