ImageList constructor

ImageList({
  1. String? albumId,
  2. int? maxImages,
  3. int? maxSize,
  4. List<MediaData>? selections,
  5. required String fileNamePrefix,
  6. ListCreatedCallback? onListCreated,
  7. ImageTappedCallback? onImageTapped,
  8. required List<MediaType> types,
  9. Color imageListColor = Colors.white,
  10. Color itemColor = Colors.white,
})

Implementation

ImageList({
  this.albumId,
  this.maxImages,
  this.maxSize,
  this.selections,
  required this.fileNamePrefix,
  this.onListCreated,
  this.onImageTapped,
  required this.types,
  this.imageListColor = Colors.white,
  this.itemColor = Colors.white,
});