setViewSize method

void setViewSize({
  1. double? width,
  2. double? height,
})

Implementation

void setViewSize({
  double? width,
  double? height,
}) {
  _width = width ?? _width;
  _height = height ?? _height;
  _notify;
}