makeOpaque method

void makeOpaque({
  1. T? paintId,
})

Manipulate the paint to make it fully opaque.

Implementation

void makeOpaque({T? paintId}) {
  setOpacity(1, paintId: paintId);
}