ChatTypeSupergroup constructor

const ChatTypeSupergroup({
  1. required int supergroupId,
  2. required bool isChannel,
})

A supergroup or channel (with unlimited members)

Implementation

const ChatTypeSupergroup({
  required this.supergroupId,
  required this.isChannel,
});