null safety

This commit is contained in:
phyothandar
2021-09-10 16:48:21 +06:30
parent 03c5fc5016
commit bb4f4ad7c2
40 changed files with 393 additions and 352 deletions

View File

@@ -78,9 +78,9 @@ class MultiImgController {
}
}
List<File> get getUpdatedFile {
List<File?> get getUpdatedFile {
List<File?> _addfiles = getAddedFile;
this.imageFiles.addAll(_addfiles);
this.imageFiles!.addAll(_addfiles);
return this.imageFiles;
}