getAlbumIcon static method

IconData getAlbumIcon()

Icon for the release album type based on app context.

Implementation

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