GuildStickerWithUserResponse constructor

const GuildStickerWithUserResponse({
  1. required String id,
  2. required String name,
  3. required String description,
  4. required List<String> tags,
  5. required bool animated,
  6. required bool nsfw,
  7. required UserPartialResponse user,
})

Implementation

const GuildStickerWithUserResponse({
  required this.id,
  required this.name,
  required this.description,
  required this.tags,
  required this.animated,
  required this.nsfw,
  required this.user,
});