categories property

List<StickerCategory>? categories
final

Defines all available stickers. Each sticker must be assigned to a category. New items and categories can be mixed and matched with existing ones. If this array is null the defaults are used but the sticker category with the identifier imgly_sticker_category_animated is only shown when editing videos.

// Defaults to:
final items = [
  StickerCategory.existing("imgly_sticker_category_emoticons",
      items: [
        Sticker.existing("imgly_smart_sticker_weekday"),
        Sticker.existing("imgly_smart_sticker_date"),
        Sticker.existing("imgly_smart_sticker_time"),
        Sticker.existing("imgly_smart_sticker_time_clock"),
        Sticker.existing("imgly_sticker_emoticons_grin"),
        Sticker.existing("imgly_sticker_emoticons_laugh"),
        Sticker.existing("imgly_sticker_emoticons_smile"),
        Sticker.existing("imgly_sticker_emoticons_wink"),
        Sticker.existing("imgly_sticker_emoticons_tongue_out_wink"),
        Sticker.existing("imgly_sticker_emoticons_angel"),
        Sticker.existing("imgly_sticker_emoticons_kisses"),
        Sticker.existing("imgly_sticker_emoticons_loving"),
        Sticker.existing("imgly_sticker_emoticons_kiss"),
        Sticker.existing("imgly_sticker_emoticons_wave"),
        Sticker.existing("imgly_sticker_emoticons_nerd"),
        Sticker.existing("imgly_sticker_emoticons_cool"),
        Sticker.existing("imgly_sticker_emoticons_blush"),
        Sticker.existing("imgly_sticker_emoticons_duckface"),
        Sticker.existing("imgly_sticker_emoticons_furious"),
        Sticker.existing("imgly_sticker_emoticons_angry"),
        Sticker.existing("imgly_sticker_emoticons_steaming_furious"),
        Sticker.existing("imgly_sticker_emoticons_anxious"),
        Sticker.existing("imgly_sticker_emoticons_cry"),
        Sticker.existing("imgly_sticker_emoticons_sobbing"),
        Sticker.existing("imgly_sticker_emoticons_loud_cry"),
        Sticker.existing("imgly_sticker_emoticons_wide_grin"),
        Sticker.existing("imgly_sticker_emoticons_impatient"),
        Sticker.existing("imgly_sticker_emoticons_tired"),
        Sticker.existing("imgly_sticker_emoticons_asleep"),
        Sticker.existing("imgly_sticker_emoticons_sleepy"),
        Sticker.existing("imgly_sticker_emoticons_deceased"),
        Sticker.existing("imgly_sticker_emoticons_attention"),
        Sticker.existing("imgly_sticker_emoticons_question"),
        Sticker.existing("imgly_sticker_emoticons_not_speaking_to_you"),
        Sticker.existing("imgly_sticker_emoticons_sick"),
        Sticker.existing("imgly_sticker_emoticons_pumpkin"),
        Sticker.existing("imgly_sticker_emoticons_boxer"),
        Sticker.existing("imgly_sticker_emoticons_idea"),
        Sticker.existing("imgly_sticker_emoticons_smoking"),
        Sticker.existing("imgly_sticker_emoticons_skateboard"),
        Sticker.existing("imgly_sticker_emoticons_guitar"),
        Sticker.existing("imgly_sticker_emoticons_music"),
        Sticker.existing("imgly_sticker_emoticons_sunbathing"),
        Sticker.existing("imgly_sticker_emoticons_hippie"),
        Sticker.existing("imgly_sticker_emoticons_humourous"),
        Sticker.existing("imgly_sticker_emoticons_hitman"),
        Sticker.existing("imgly_sticker_emoticons_harry_potter"),
        Sticker.existing("imgly_sticker_emoticons_business"),
        Sticker.existing("imgly_sticker_emoticons_batman"),
        Sticker.existing("imgly_sticker_emoticons_skull"),
        Sticker.existing("imgly_sticker_emoticons_ninja"),
        Sticker.existing("imgly_sticker_emoticons_masked"),
        Sticker.existing("imgly_sticker_emoticons_alien"),
        Sticker.existing("imgly_sticker_emoticons_wrestler"),
        Sticker.existing("imgly_sticker_emoticons_devil"),
        Sticker.existing("imgly_sticker_emoticons_star"),
        Sticker.existing("imgly_sticker_emoticons_baby_chicken"),
        Sticker.existing("imgly_sticker_emoticons_rabbit"),
        Sticker.existing("imgly_sticker_emoticons_pig"),
        Sticker.existing("imgly_sticker_emoticons_chicken"),
      ]),
  StickerCategory.existing("imgly_sticker_category_shapes",
      items: [
        Sticker.existing("imgly_sticker_shapes_badge_01"),
        Sticker.existing("imgly_sticker_shapes_badge_04"),
        Sticker.existing("imgly_sticker_shapes_badge_12"),
        Sticker.existing("imgly_sticker_shapes_badge_06"),
        Sticker.existing("imgly_sticker_shapes_badge_13"),
        Sticker.existing("imgly_sticker_shapes_badge_36"),
        Sticker.existing("imgly_sticker_shapes_badge_08"),
        Sticker.existing("imgly_sticker_shapes_badge_11"),
        Sticker.existing("imgly_sticker_shapes_badge_35"),
        Sticker.existing("imgly_sticker_shapes_badge_28"),
        Sticker.existing("imgly_sticker_shapes_badge_32"),
        Sticker.existing("imgly_sticker_shapes_badge_15"),
        Sticker.existing("imgly_sticker_shapes_badge_20"),
        Sticker.existing("imgly_sticker_shapes_badge_18"),
        Sticker.existing("imgly_sticker_shapes_badge_19"),
        Sticker.existing("imgly_sticker_shapes_arrow_02"),
        Sticker.existing("imgly_sticker_shapes_arrow_03"),
        Sticker.existing("imgly_sticker_shapes_spray_01"),
        Sticker.existing("imgly_sticker_shapes_spray_04"),
        Sticker.existing("imgly_sticker_shapes_spray_03"),
      ]),
  StickerCategory.existing("imgly_sticker_category_animated",
      items: [
        Sticker.existing("imgly_sticker_animated_camera"),
        Sticker.existing("imgly_sticker_animated_clouds"),
        Sticker.existing("imgly_sticker_animated_coffee"),
        Sticker.existing("imgly_sticker_animated_fire"),
        Sticker.existing("imgly_sticker_animated_flower"),
        Sticker.existing("imgly_sticker_animated_gift"),
        Sticker.existing("imgly_sticker_animated_heart"),
        Sticker.existing("imgly_sticker_animated_movie_clap"),
        Sticker.existing("imgly_sticker_animated_rainbow"),
        Sticker.existing("imgly_sticker_animated_stars"),
        Sticker.existing("imgly_sticker_animated_sun"),
        Sticker.existing("imgly_sticker_animated_thumbs_up"),
      ])
];

Implementation

final List<StickerCategory>? categories;