resize method

void resize(
  1. double width,
  2. double height
)

Implementation

void resize(double width, double height) {
  _width = width;
  _height = height;
}