size property

Size get size

Rendered image dimensions as Size.

It contains the rendered width and height which can be different from the requested size when allowResize is enabled in subclasses. It can also be different from the recommended size if custom sizes were provided.

Returns

  • Size with width and height as doubles

Implementation

Size get size => Size(width.toDouble(), height.toDouble());