MediaCollection constructor

const MediaCollection({
  1. Key? key,
  2. required List<Media> medias,
  3. MediaCollectionTheme theme = defaultMediaCollectionTheme,
})

Implementation

const MediaCollection({
  Key? key,
  required this.medias,
  this.theme = defaultMediaCollectionTheme,
}) : super(key: key);