'_TypeError (type 'List<File>' is not a subtype of type 'List<String>' of 'other')
I need to create a list of String and File Data Type. But i get this Exception When i run this code.
List<dynamic> listOfString = product.value.pickedImages.getOrCrash();
List<dynamic> listOfDynamic = listOfString +_imagesForUI.value; // _imagesForUI.value is List Of File
the Exception pointed at listOfDynamic.
The Exception Is:
_TypeError (type 'List' is not a subtype of type 'List' of 'other')
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
