GridImage constructor

GridImage({
  1. Key? key,
  2. required BuildContext context,
  3. required dynamic onchange(
    1. List<File> files
    ),
  4. bool onlyCamera = false,
  5. String? title,
  6. String? bottomsheetTitle = null,
  7. bool compressImage = false,
  8. List<File>? images,
  9. String? placeholderImage = "",
})

Implementation

GridImage(
    {Key? key,
    required this.context,
    required this.onchange,
    this.onlyCamera = false,
    this.title,
    this.bottomsheetTitle = null,
    this.compressImage = false,
    this.images,
    this.placeholderImage = ""})
    : super(key: key);