fix: Typo

This commit is contained in:
Christian Pauly 2021-04-09 16:54:00 +02:00
parent 56e5c81d1c
commit 6250fd02aa
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ abstract class PlatformInfos {
static bool get usesTouchscreen => !isMobile;
static String get clientName =>
'${AppConfig.applicationName} ${isWeb ? 'Web' : Platform.operatingSystem}';
'${AppConfig.applicationName} ${isWeb ? 'web' : Platform.operatingSystem}';
static Future<String> getVersion() async {
var version = kIsWeb ? 'Web' : 'Unknown';