I have a result of type List[List[Map[String,String]]]and I would like to transform it into List[Map[String,String]]. How would I do this in Scala?
I have a result of type List[List[Map[String,String]]] and I would like to transform it
Share
This is helped me understand how flatten work.