removeAlphabet method

String removeAlphabet()

Implementation

String removeAlphabet() {
  return replaceAll(RegExp(r'[^0-9]'), '');
}