find and replace in dart code example
Example: flutter replace character in string
newString = 'resume';
newString.replaceAll('e', 'é'); // it returns the string 'résumé'
// And you can use a regex to search like a needle in a haystack:
'resume'.replaceAll(RegExp(r'e'), ‘é’); // 'résumé'