redraw method
Update the TextStyle.color to the passed color
Implementation
void redraw(Color? color) {
_style = _style.copyWith(color: color);
notifyListeners();
}
Update the TextStyle.color to the passed color
void redraw(Color? color) {
_style = _style.copyWith(color: color);
notifyListeners();
}