have this String "name=jack&age=22&true&red" and i want to get all the value as sperate String i can get the first value by this but don't know how to get the other
String text = "name=jack&age=22&true&red" ;
var splitText = text.split("&") ; // [name=jack, age=22, true, red]
var firstValue= splitText.first ; // name=jack