setImageDimensions method

void setImageDimensions(
  1. String width,
  2. String height
)

Implementation

void setImageDimensions(String width, String height) {
  _imageWidth = width;
  _imageHeight = height;
  notifyListeners();
}