graphics property
      
      PdfGraphics
      get
      graphics
      
    
    
Gets Graphics context of the layer, used to draw various graphical content on layer.
Implementation
PdfGraphics get graphics {
  if (_helper.graphics == null || _isSaved) {
    _initializeGraphics(page);
  }
  return _helper.graphics!;
}