fléchette de remplacement

Syntax: 
String replaceAll(Pattern from, String replace);

Example: 
'Hello'.replaceAll(RegExp(r'o'), 'ò'); // 'Hellò'
Vel