ImageBrowse constructor

const ImageBrowse({
  1. Key? key,
  2. required List<String> images,
  3. ValueNotifier<File>? photo,
  4. void delete()?,
  5. bool? square,
  6. num? childHeight,
  7. num? childWidth,
  8. num? height,
  9. num? width,
  10. num? operatingTopPadding,
  11. num? operatingTop,
  12. num? closeSize,
  13. Color? closeColor,
})

Implementation

const ImageBrowse({
  Key? key,
  required this.images,
  this.photo,
  this.delete,
  this.square,
  this.childHeight,
  this.childWidth,
  this.height,
  this.width,
  this.operatingTopPadding,
  this.operatingTop,
  this.closeSize,
  this.closeColor,
}) : super(key: key);