check null safety

This commit is contained in:
tzw
2021-09-10 17:15:23 +06:30
parent f3744fdbcf
commit 29c35d6454
3 changed files with 4 additions and 4 deletions

View File

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