static String getCleanedNumber(String text) { RegExp regExp = new RegExp(r"[^0-9]"); return text.replaceAll(regExp, ''); }