I want to map array from Firebase as a list of string in Kotlin
I have been searching for answer in may threads but they doesn't answer my question
Now I fetch whole collection and I get DocumentSnapshot. When I do
list = it["myArray"].toString()
I get string:
list = [text1, text2, text3]
How Can I convert it to list?
