PreviewController constructor
Implementation
PreviewController({int? currentImage, List<String>? filesPath})
: super(currentImage == null && filesPath == null
? PreviewEditingValue.empty
: new PreviewEditingValue(
currentImage: currentImage, filesPath: filesPath));