How to replace specific words in the string in flutter?
I have the below string input in flutter and I want to replace or remove a word if it occurs in a list
String t1 = "100 ml parachute oil hair";
List A = ["a","b","c","d","ml"];
how can I do it?
question from:https://stackoverflow.com/questions/66058245/replace-words-in-string-flutter