HelpPromoData constructor

const HelpPromoData({
  1. required bool proxy,
  2. required DateTime expires,
  3. PeerBase? peer,
  4. String? psaType,
  5. String? psaMessage,
  6. required List<String> pendingSuggestions,
  7. required List<String> dismissedSuggestions,
  8. PendingSuggestionBase? customPendingSuggestion,
  9. required List<ChatBase> chats,
  10. required List<UserBase> users,
})

Help Promo Data constructor.

Implementation

const HelpPromoData({
  required this.proxy,
  required this.expires,
  this.peer,
  this.psaType,
  this.psaMessage,
  required this.pendingSuggestions,
  required this.dismissedSuggestions,
  this.customPendingSuggestion,
  required this.chats,
  required this.users,
}) : super._();