Sticker constructor

Sticker({
  1. required Snowflake id,
  2. Snowflake? packId,
  3. required String name,
  4. required String? description,
  5. required String tags,
  6. String? asset,
  7. required int type,
  8. required int formatType,
  9. bool? available,
  10. Snowflake? guildId,
  11. User? user,
  12. int? sortValue,
})

Implementation

Sticker(
    {required this.id,
    this.packId,
    required this.name,
    required this.description,
    required this.tags,
    this.asset,
    required this.type,
    required this.formatType,
    this.available,
    this.guildId,
    this.user,
    this.sortValue});