ImageEdit constructor

const ImageEdit({
  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 the image editing widget.

Implementation

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