setDrawColor method

void setDrawColor(
  1. Color value
)

Sets the current drawing color.

Implementation

void setDrawColor(Color value) {
  if (_drawColor == value) return;
  _drawColor = value;
  _contracts.markSceneGeometryChanged();
  _contracts.notifyNow();
}