GalleryPage constructor

GalleryPage({
  1. bool? allowMultiple,
  2. int? maxSize,
})

Implementation

GalleryPage({bool? allowMultiple, this.maxSize})
    : assert(maxSize == null || maxSize >= 0),
      this.allowMultiple = allowMultiple ?? true;