Remove prints from setupPackageInfoAndUserAgent main.dart

This commit is contained in:
Hank Grabowski 2024-06-20 16:54:16 -04:00
parent 7370422dd6
commit 04b6da1f8e

View file

@ -58,9 +58,6 @@ Future<void> setupPackageInfoAndUserAgent() async {
PackageInfo packageInfo = await PackageInfo.fromPlatform();
appVersion = packageInfo.version;
userAgent = 'Relatica/$appVersion';
print('App Version: $appVersion');
print('User Agent: $userAgent');
print('');
}
class App extends StatelessWidget {