getForthTabIcon static method
Implementation
static IconData getForthTabIcon() {
switch (AppConfig.instance.appInUse) {
case AppInUse.g:
return Icons.play_circle_fill;
case AppInUse.e:
return FontAwesomeIcons.headphones;
case AppInUse.c:
return LucideIcons.audioWaveform;
default:
return LucideIcons.headphones;
}
}