hexIntoColorModel method
Implementation
Future<List<ColorNameModel>?> hexIntoColorModel(String value) async {
try {
return await _apiService.getColorName(value.removeHexPrefix());
} catch (e) {
if (kDebugMode) {
print("Error: $e");
}
return null;
}
}