setOvalColors method
Implementation
ThemeBuilder setOvalColors({
required int ready,
required int notReady,
required int stroke,
required int completed,
}) {
ovalReadyColor = ready;
ovalNotReadyColor = notReady;
ovalStrokeColor = stroke;
ovalCompletedColor = completed;
return this;
}