MemberUpdateBuilder constructor

MemberUpdateBuilder(
  1. {String? nick = sentinelString,
  2. List<Snowflake>? roleIds,
  3. bool? isMute,
  4. bool? isDeaf,
  5. Snowflake? voiceChannelId = sentinelSnowflake,
  6. DateTime? communicationDisabledUntil = sentinelDateTime,
  7. Flags<MemberFlags>? flags}
)

Implementation

MemberUpdateBuilder({
  this.nick = sentinelString,
  this.roleIds,
  this.isMute,
  this.isDeaf,
  this.voiceChannelId = sentinelSnowflake,
  this.communicationDisabledUntil = sentinelDateTime,
  this.flags,
});