+ missing localizatoin +permissions fix

This commit is contained in:
Stephan D
2025-12-04 22:18:09 +01:00
parent 668ade2014
commit 84318883d2
7 changed files with 35 additions and 7 deletions

View File

@@ -8,8 +8,7 @@ enum RecipientType { internal, external }
extension RecipientTypeExtension on RecipientType {
/// Localized label no opaque abbreviations.
String label(BuildContext context) =>
this == RecipientType.internal
? PSLocalizations.of(context)!.typeInternal
: PSLocalizations.of(context)!.typeExternal;
String label(BuildContext context) => this == RecipientType.internal
? PSLocalizations.of(context)!.typeInternal
: PSLocalizations.of(context)!.typeExternal;
}