static String replaceNumbersWithEight(String text) { return text.replaceAllMapped(RegExp(r'\d'), (Match m) => '8'); }