UpdateChatIsBlocked constructor

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

A chat was blocked or unblocked

Implementation

const UpdateChatIsBlocked({
  required this.chatId,
  required this.isBlocked,
  this.extra,
  this.clientId,
});