UpdateSupergroup constructor

const UpdateSupergroup({
  1. required Supergroup supergroup,
  2. dynamic extra,
  3. int? clientId,
})

Some data of a supergroup or a channel has changed. This update is guaranteed to come before the supergroup identifier is returned to the application

Implementation

const UpdateSupergroup({
  required this.supergroup,
  this.extra,
  this.clientId,
});