mediaGallery method

GalleryWidgetBundle mediaGallery({
  1. required dynamic context,
  2. int? userID,
  3. String? username,
  4. List<Media>? cachedmediaList,
  5. dynamic onmediaUpdated(
    1. List<Media> updatedMedia
    )?,
  6. bool storyShare = false,
})

Implementation

GalleryWidgetBundle mediaGallery({
  required context,
  int? userID,
  String? username,
  List<Media>? cachedmediaList,
  Function(List<Media> updatedMedia)? onmediaUpdated,
  bool storyShare = false,
}) {
  return widgetmediaGallery(
    service: service,
    context: context,
    userID: userID,
    username: username,
    cachedmediaList: cachedmediaList,
    onmediaUpdated: onmediaUpdated,
    storyShare: storyShare,
  );
}