PreviewEditingValue constructor

const PreviewEditingValue({
  1. int? currentImage,
  2. List<String>? filesPath,
})

Implementation

const PreviewEditingValue({
  int? currentImage,
  List<String>? filesPath,
})  : this.currentImage = currentImage ?? 0,
      this.filesPath = filesPath ?? const [];