toRgbColor method Null safety
- Color color
Implementation
static int toRgbColor (Color color) {
return int.parse(color.toString().replaceAll('#', ''), radix: 16);
}
static int toRgbColor (Color color) {
return int.parse(color.toString().replaceAll('#', ''), radix: 16);
}