imagesWithBackground property

List<StickerAttachmentImageModel> get imagesWithBackground

Images for the sticker (with an opaque background).

Implementation

List<StickerAttachmentImageModel> get imagesWithBackground =>
    (payload['images_with_background'] as List)
        .map((e) =>
            // ignore: require_trailing_commass
            StickerAttachmentImageModel((e as Map).cast<String, dynamic>()))
        .toList();