size property

Size? size

Implementation

Size? get size {
  if (!_hasSize) {
    _size = _getPageSize();
    _hasSize = true;
  }
  return _size;
}