Sticker constructor

const Sticker({
  1. String? modifiedAt,
  2. required int stickerOrder,
  3. required String stickerSetId,
  4. required String stickerUrl,
  5. String? createdAt,
  6. required String stickerSetName,
  7. required String id,
  8. required int stickerSetOrder,
  9. required String stickerName,
})

Implementation

const Sticker(
    {this.modifiedAt,
    required this.stickerOrder,
    required this.stickerSetId,
    required this.stickerUrl,
    this.createdAt,
    required this.stickerSetName,
    required this.id,
    required this.stickerSetOrder,
    required this.stickerName});