pointSize property

Size pointSize

Implementation

Size get pointSize {
  if (isImage) {
    return Size(
      _image!.width / (_image.devicePixelRatio ?? 1.0),
      _image.height / (_image.devicePixelRatio ?? 1.0),
    );
  } else {
    return _renderObjectBounds!.size;
  }
}