getSingleIcon static method

IconData getSingleIcon()

Icon for the release single type based on app context.

Implementation

static IconData getSingleIcon() {
  switch (AppConfig.instance.appInUse) {
    case AppInUse.c:
      return Icons.self_improvement_outlined;
    case AppInUse.e:
      return Icons.menu_book;
    default:
      return Icons.album_outlined;
  }
}