UpdateChatIsTranslatable constructor

const UpdateChatIsTranslatable({
  1. required int chatId,
  2. required bool isTranslatable,
  3. dynamic extra,
  4. int? clientId,
})

Translation of chat messages was enabled or disabled

Implementation

const UpdateChatIsTranslatable({
  required this.chatId,
  required this.isTranslatable,
  this.extra,
  this.clientId,
});