Sticker constructor

Sticker({
  1. required Snowflake id,
  2. required String name,
  3. required StickerType type,
  4. required bool isAvailable,
  5. String? packId,
  6. String? description,
  7. String? tags,
  8. String? asset,
  9. FormatType? formatType,
  10. int? sortValue,
  11. Snowflake? serverId,
})

Implementation

Sticker({
  required this.id,
  required this.name,
  required this.type,
  required this.isAvailable,
  this.packId,
  this.description,
  this.tags,
  this.asset,
  this.formatType,
  this.sortValue,
  this.serverId,
});