hexCode property
Return uppercase Flutter style hex code string of the color.
Implementation
String get hexCode {
return value.toRadixString(16).toUpperCase().padLeft(8, '0');
}
Return uppercase Flutter style hex code string of the color.
String get hexCode {
return value.toRadixString(16).toUpperCase().padLeft(8, '0');
}