Rectangle constructor

Rectangle({
  1. int? height,
  2. int? width,
  3. int? x,
  4. int? y,
})

Implementation

Rectangle({
  this.height,
  this.width,
  this.x,
  this.y,
});