RegularGallery constructor

const RegularGallery({
  1. Key? key,
  2. List<MediaItem> items = const [],
  3. ResourceId? resourceId,
  4. void onReply(
    1. Post
    )?,
  5. void onShare(
    1. Post
    )?,
  6. void onScrollTo(
    1. Post
    )?,
})

Implementation

const RegularGallery({
  super.key,
  this.items = const [],
  this.resourceId,
  this.onReply,
  this.onShare,
  this.onScrollTo,
});