Sticker constructor

Sticker({
  1. required String id,
  2. required String packId,
  3. required String name,
  4. required String description,
  5. String? tags,
  6. required String asset,
  7. String? previewAsset,
  8. required int formatType,
})

Implementation

Sticker({
  required this.id,
  required this.packId,
  required this.name,
  required this.description,
  this.tags,
  required this.asset,
  this.previewAsset,
  required this.formatType,
});