UpdateChatTitle constructor

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

The title of a chat was changed

Implementation

const UpdateChatTitle({
  required this.chatId,
  required this.title,
  this.extra,
  this.clientId,
});