UpdateChatTheme constructor

const UpdateChatTheme({
  1. required int chatId,
  2. required String themeName,
  3. dynamic extra,
  4. int? clientId,
})

The chat theme was changed

Implementation

const UpdateChatTheme({
  required this.chatId,
  required this.themeName,
  this.extra,
  this.clientId,
});