MemberBuilder constructor

MemberBuilder({
  1. Snowflake? channel = const Snowflake.zero(),
  2. bool? deaf,
  3. bool? mute,
  4. String? nick,
  5. List<Snowflake>? roles,
  6. DateTime? timeoutUntil,
  7. MemberFlagsBuilder? flags,
})

Implementation

MemberBuilder({
  this.channel = const Snowflake.zero(),
  this.deaf,
  this.mute,
  this.nick,
  this.roles,
  DateTime? timeoutUntil,
  this.flags,
}) : timeoutUntil = timeoutUntil ?? DateTime.fromMicrosecondsSinceEpoch(0);