iter method
Implementation
@override
void iter(String cls) {
if (bgColorPattern.hasMatch(cls)) {
final match = bgColorPattern.firstMatch(cls)!;
final color = match.group(1);
final alpha = match.group(2);
this.color = parseColor(color, alpha);
}
}