UpdateChatHasProtectedContent constructor

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

A chat content was allowed or restricted for saving

Implementation

const UpdateChatHasProtectedContent({
  required this.chatId,
  required this.hasProtectedContent,
  this.extra,
  this.clientId,
});