StickerPack constructor

StickerPack({
  1. required String identifier,
  2. required String name,
  3. required String publisher,
  4. String? trayImage,
  5. List<String>? stickers,
  6. bool animatedStickerPack = false,
  7. String? publisherEmail,
  8. String? publisherWebsite,
  9. String? privacyPolicyWebsite,
  10. String? licenseAgreementWebsite,
  11. String? iosAppStoreLink,
  12. String? androidPlayStoreLink,
})

Implementation

StickerPack({
  required this.identifier,
  required this.name,
  required this.publisher,

  this.trayImage,
  List<String>? stickers,
  this.animatedStickerPack = false,

  this.publisherEmail,
  this.publisherWebsite,
  this.privacyPolicyWebsite,
  this.licenseAgreementWebsite,
  this.iosAppStoreLink,
  this.androidPlayStoreLink,
}) : stickers = stickers ?? List.empty(growable: true);