gatherAppInfo method

  1. @override
Future<Map<String, Object?>> gatherAppInfo()
override

Implementation

@override
Future<Map<String, Object?>> gatherAppInfo() async {
  return {
    'app_id': await getAppId(),
    'app_instance_id': await getAppInstanceId(),
    'app_platform': getAppPlatform(),
    'app_store': await getAppStore(),
    'app_version': await getAppVersion(),
  };
}