colorToString function
Implementation
String? colorToString(Color? color) {
if (color == null) {
return null;
}
return color.cssExpression;
}
String? colorToString(Color? color) {
if (color == null) {
return null;
}
return color.cssExpression;
}