updated new linter rules
This commit is contained in:
@ -5,24 +5,24 @@ import 'subject.dart';
|
||||
|
||||
class AbiturCalculatorModel extends ChangeNotifier {
|
||||
static SubjectCollection subjects = SubjectCollection([
|
||||
Subject(displayName: "Deutsch", icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Erste Fremdsprache", icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Zweite Fremdsprache", icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Zweite Fremdsprache ab Kl. 11", icon: Icons.translate_outlined, lkApplicable: false),
|
||||
Subject(displayName: "Kunst", icon: Icons.brush_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Musik", icon: Icons.music_note_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Darstellendes Spiel", icon: Icons.theater_comedy_outlined, lkApplicable: false),
|
||||
Subject(displayName: "PoWi", icon: Icons.book_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Geschichte", icon: Icons.history_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Religion", icon: Icons.church_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Erdkunde", icon: Icons.map_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Mathematik", icon: Icons.calculate_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Erste Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Zweite Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Dritte Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Biochemie", icon: Icons.biotech_outlined, lkApplicable: false),
|
||||
Subject(displayName: "Informatik", icon: Icons.code_outlined, lkApplicable: true),
|
||||
Subject(displayName: "Sport", icon: Icons.sports_basketball_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Deutsch', icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Erste Fremdsprache', icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Zweite Fremdsprache', icon: Icons.translate_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Zweite Fremdsprache ab Kl. 11', icon: Icons.translate_outlined, lkApplicable: false),
|
||||
Subject(displayName: 'Kunst', icon: Icons.brush_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Musik', icon: Icons.music_note_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Darstellendes Spiel', icon: Icons.theater_comedy_outlined, lkApplicable: false),
|
||||
Subject(displayName: 'PoWi', icon: Icons.book_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Geschichte', icon: Icons.history_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Religion', icon: Icons.church_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Erdkunde', icon: Icons.map_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Mathematik', icon: Icons.calculate_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Erste Naturwissenschaft', icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Zweite Naturwissenschaft', icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Dritte Naturwissenschaft', icon: Icons.science_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Biochemie', icon: Icons.biotech_outlined, lkApplicable: false),
|
||||
Subject(displayName: 'Informatik', icon: Icons.code_outlined, lkApplicable: true),
|
||||
Subject(displayName: 'Sport', icon: Icons.sports_basketball_outlined, lkApplicable: true),
|
||||
]);
|
||||
|
||||
static AbiturCalculatorModel get(BuildContext context) {
|
||||
|
Reference in New Issue
Block a user