getDeviceLogoUrl function
Implementation
String getDeviceLogoUrl(String? deviceType) {
switch (deviceType) {
case 'android':
return '🤖';
case 'ios':
return '🍎';
case 'linux':
return '🐧';
case 'macos':
return '🍏';
case 'windows':
return '🪟';
default:
return '';
}
}