Getting Error: type 'List<dynamic>' is not a subtype of type 'List<String>'
void storeAppDeviceData() async {
try {
await appwriteDatabases.createDocument(
databaseId: DATABASE_ID,
collectionId: APP_DEVICE_DATA_COLLECTION_ID,
documentId: ID.unique(),
data: {'token': 'XYZ'},
);
} catch (e) {
print('Error: $e');
}
}