SizedBox.fromSize constructor
SizedBox.fromSize({
- Widget? child,
- PdfPoint? size,
Creates a box with the specified size.
Implementation
SizedBox.fromSize({this.child, PdfPoint? size})
: width = size?.x,
height = size?.y;