made getters non nullable and removed all null assertion operators
Some checks failed
Pull Request Pipeline / test (pull_request) Successful in 2m10s
Pull Request Pipeline / lint (pull_request) Failing after 2m11s

This commit is contained in:
2026-01-02 19:01:44 +01:00
parent 7f923f6dff
commit 3c22b084d6
18 changed files with 87 additions and 86 deletions

View File

@@ -36,7 +36,7 @@ class StatisticsTile extends StatelessWidget {
visible: values.isNotEmpty,
replacement: Center(
heightFactor: 4,
child: Text(AppLocalizations.of(context)!.no_data_available),
child: Text(AppLocalizations.of(context).no_data_available),
),
child: Column(
children: List.generate(min(values.length, itemCount), (index) {