getColor method
Implementation
@override
Color getColor({bool stroke = false, bool backgroundStroke = false}) {
if (stroke || backgroundStroke) {
return getStrokeColor(background: backgroundStroke);
} else {
return getFillColor();
}
}
@override
Color getColor({bool stroke = false, bool backgroundStroke = false}) {
if (stroke || backgroundStroke) {
return getStrokeColor(background: backgroundStroke);
} else {
return getFillColor();
}
}