banNumber function
Implementation
dynamic banNumber(String text) {
for (int i = 0; i < text.length; i++) {
final newT = numberMultiLan(text[i]);
text = text.replaceAll(text[i], newT);
}
return text;
}
dynamic banNumber(String text) {
for (int i = 0; i < text.length; i++) {
final newT = numberMultiLan(text[i]);
text = text.replaceAll(text[i], newT);
}
return text;
}