drawWhiteText method Null safety
override
Implementation
@override
void drawWhiteText(Canvas canvas, TextStyle style, String text, double w) {
if (bFactory.controller.model.onIsPressed.value) {
drawCustomWhiteText(canvas, specialText, w);
} else {
super.drawWhiteText(canvas, style, text, w);
}
}