resize method

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

Implementation

void resize(double width, double height) {
  log('MapStates resize');
  _size = Size(width, height);
  notifyListeners();
}