AppInfo constructor

AppInfo({
  1. required String appId,
  2. required String appName,
  3. required String appVersion,
  4. required String platform,
  5. required String environment,
  6. String? appLanguage,
  7. String? preferredAndroidMarket,
  8. String? otherAndroidMarketUrl,
  9. String? preferredIosStore,
  10. String? otherIosStoreUrl,
  11. Map<String, dynamic>? customAttributes,
})

Implementation

AppInfo({
  required this.appId,
  required this.appName,
  required this.appVersion,
  required this.platform,
  required this.environment,
  this.appLanguage,
  this.preferredAndroidMarket,
  this.otherAndroidMarketUrl,
  this.preferredIosStore,
  this.otherIosStoreUrl,
  this.customAttributes,
});