GuildMemberResponse constructor

const GuildMemberResponse({
  1. required UserPartialResponse user,
  2. required List<String> roles,
  3. required DateTime joinedAt,
  4. required bool mute,
  5. required bool deaf,
  6. String? nick,
  7. String? avatar,
  8. String? banner,
  9. Int32Type? accentColor,
  10. DateTime? communicationDisabledUntil,
  11. GuildMemberProfileFlags? profileFlags,
  12. MentionReplyPreferences? mentionFlags,
})

Implementation

const GuildMemberResponse({
  required this.user,
  required this.roles,
  required this.joinedAt,
  required this.mute,
  required this.deaf,
  this.nick,
  this.avatar,
  this.banner,
  this.accentColor,
  this.communicationDisabledUntil,
  this.profileFlags,
  this.mentionFlags,
});