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
This would solve your problem
String name = "COCA COLA"; print(name.replaceAll(' ', ''));