ImageSticker constructor

const ImageSticker({
  1. Key? key,
  2. required File file,
  3. required String title,
  4. ImagePickerConfigs? configs,
  5. int maxWidth = 1080,
  6. int maxHeight = 1920,
})

Default constructor for ImageSticker, used to add image based sticker icons on library images and photos.

Implementation

const ImageSticker(
    {final Key? key,
    required this.file,
    required this.title,
    this.configs,
    this.maxWidth = 1080,
    this.maxHeight = 1920})
    : super(key: key);