RenderPicture constructor
RenderPicture({
- PictureInfo? picture,
- bool matchTextDirection = false,
- TextDirection? textDirection,
- bool? allowDrawingOutsideViewBox,
Creates a new RenderPicture.
Implementation
RenderPicture({
PictureInfo? picture,
bool matchTextDirection = false,
TextDirection? textDirection,
bool? allowDrawingOutsideViewBox,
}) : _matchTextDirection = matchTextDirection,
_textDirection = textDirection,
_allowDrawingOutsideViewBox = allowDrawingOutsideViewBox {
this.picture = picture;
}