Using trim() to eliminate white space in Dart and it doesn\'t work. What am I doing wrong or is there an alternative?
trim()
String product = \"COC
You can try this:
String product = "COCA COLA"; print(product.split(" ").join("")); // COCACOLA