ImagePickerConfig constructor

const ImagePickerConfig(
  1. {double? maxWidth,
  2. double? maxHeight,
  3. int? imageQuality,
  4. bool? cameraOption}
)

The ImagePickerConfig is used to configure the ImagePicker.

Implementation

const ImagePickerConfig({
  this.maxWidth,
  this.maxHeight,
  this.imageQuality,
  this.cameraOption,
});