AppInfo constructor

AppInfo({
  1. required List<String> premiumFeatureList,
  2. required int uploadSizeLimit,
  3. required List<String> attributesInUse,
  4. required String emojiHash,
  5. required bool useReaction,
  6. NotificationInfo? notificationInfo,
  7. bool allowSdkStatsUpload = true,
  8. bool disableSuperGroupMack = false,
  9. int unreadCntThreadingPolicy = 0,
  10. int lastMsgThreadingPolicy = 0,
})

Implementation

AppInfo({
  required this.premiumFeatureList,
  required this.uploadSizeLimit,
  required this.attributesInUse,
  required this.emojiHash,
  required this.useReaction,
  this.notificationInfo,
  this.allowSdkStatsUpload = true,
  this.disableSuperGroupMack = false,
  this.unreadCntThreadingPolicy = 0,
  this.lastMsgThreadingPolicy = 0,
});