If the image size is null, allow us to update it's value.
void setImageSizeIfNull({required int? width, required int? height}) { _width ??= width; _height ??= height; }