ImageSelector constructor

const ImageSelector({
  1. Key? key,
  2. double containerWidth = 300,
  3. double containerHeight = 100,
  4. required dynamic onError(
    1. String e
    ),
  5. String? cameraDescription = "Tap inside the box in order to upload photos",
  6. Color? themeColor = Colors.white,
  7. String? galleryText = "Gallery",
  8. String? cameraText = "Camera",
  9. required List<File> imageList,
})

Implementation

const ImageSelector(
    {Key? key,
      this.containerWidth = 300,
      this.containerHeight = 100,
      required this.onError,
      this.cameraDescription = "Tap inside the box in order to upload photos",
      this.themeColor = Colors.white,
      this.galleryText = "Gallery",
      this.cameraText = "Camera", required this.imageList})
    : super(key: key);