filesPath property

List<String> get filesPath

Implementation

List<String> get filesPath => value.filesPath;
set filesPath (List<String> newFilesPath)

Implementation

set filesPath(List<String> newFilesPath) {
  value = value.copyWith(
      currentImage: this.currentImage, filesPath: newFilesPath);
}