fix: Typo

This commit is contained in:
Christian Pauly 2021-04-09 16:54:00 +02:00
parent 3c6c732401
commit dc33e526f3

View file

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