ImagePicker constructor

const ImagePicker({
  1. Key? key,
  2. int maxCount = 10,
  3. bool isFullscreenImage = false,
  4. bool isCaptureFirst = true,
  5. ImagePickerConfigs? configs,
})

Default constructor for the photo and media image picker.

Implementation

const ImagePicker(
    {final Key? key,
    this.maxCount = 10,
    this.isFullscreenImage = false,
    this.isCaptureFirst = true,
    this.configs})
    : super(key: key);