makeOpaque method

void makeOpaque({
  1. Object? paintId,
})
inherited

Manipulate the paint to make it fully opaque.

Implementation

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