AccountChatThemes constructor

const AccountChatThemes({
  1. required int hash,
  2. required List<ChatThemeBase> themes,
  3. required List<ChatBase> chats,
  4. required List<UserBase> users,
  5. String? nextOffset,
})

Account Chat Themes constructor.

Implementation

const AccountChatThemes({
  required this.hash,
  required this.themes,
  required this.chats,
  required this.users,
  this.nextOffset,
}) : super._();