copyWith method
Implementation
PreviewEditingValue copyWith({int? currentImage, List<String>? filesPath}) {
return new PreviewEditingValue(
currentImage: currentImage ?? this.currentImage,
filesPath: filesPath ?? this.filesPath);
}
PreviewEditingValue copyWith({int? currentImage, List<String>? filesPath}) {
return new PreviewEditingValue(
currentImage: currentImage ?? this.currentImage,
filesPath: filesPath ?? this.filesPath);
}