// svg_service.dart class SvgService { static const String dashboard = ''' '''; static const String policies = ''' '''; static const String cd = ''' '''; static const String claims = ''' '''; static const String logout = ''' '''; static String getSvg(String svgName) { switch (svgName) { case 'dashboard': return dashboard; case 'policies': return policies; case 'cd': return cd; case 'claims': return claims; case 'logout': return logout; default: return ''; } } // Add more SVG strings here as needed }