paintBackground method

void paintBackground(
  1. PCanvas pCanvas
)

Implementation

void paintBackground(PCanvas pCanvas) {
  var style = this.style;
  if (style != null) {
    pCanvas.fillRect(0, 0, width, height, style);
  }
}