sizeToPixels method

double sizeToPixels(
  1. double size
)

Convert a sheet's size (fractional value of parent container height) to pixels.

Implementation

double sizeToPixels(double size) {
  _assertAttached();
  return _attachedController!.extent.sizeToPixels(size);
}