StickerPack constructor
StickerPack({
- required String identifier,
- required String name,
- required String publisher,
- String? trayImage,
- List<
String> ? stickers, - bool animatedStickerPack = false,
- String? publisherEmail,
- String? publisherWebsite,
- String? privacyPolicyWebsite,
- String? licenseAgreementWebsite,
- String? iosAppStoreLink,
- 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);