PhotoSelect constructor

const PhotoSelect(
  1. ValueNotifier<File> photo, {
  2. Key? key,
  3. ImgHelp? imgHelp,
  4. Color? color,
  5. Brightness? brightness,
  6. num? width,
  7. num? height,
})

Implementation

const PhotoSelect(
  this.photo, {
  Key? key,
  this.imgHelp,
  this.color,
  this.brightness,
  this.width,
  this.height,
})  : isUrl = imgHelp != null,
      super(key: key);