GRectangle constructor

GRectangle(
  1. int x,
  2. int y,
  3. int width,
  4. int height, {
  5. int? strokeSize,
  6. PColor? color,
  7. PColor? backgroundColor,
})

Implementation

GRectangle(this.x, this.y, this.width, this.height,
    {this.strokeSize, this.color, this.backgroundColor});