MediaPreviewPage constructor

MediaPreviewPage({
  1. Key? key,
  2. List<String>? filePaths,
  3. String? filePath,
  4. String? initialCaption,
})

Implementation

MediaPreviewPage({
  super.key,
  List<String>? filePaths,
  String? filePath,
  this.initialCaption,
}) : filePaths = filePaths ?? (filePath != null ? [filePath] : const []);