ChannelManager<C extends Channel>.empty constructor

ChannelManager<C extends Channel>.empty(
  1. String serverId
)

Implementation

factory ChannelManager.empty(String serverId) {
  return ChannelManager(
    Snowflake(serverId),
    afkChannelId: null,
    systemChannelId: null,
    rulesChannelId: null,
    publicUpdatesChannelId: null,
    safetyAlertsChannelId: null,
  );
}