normalizedNumber method

String normalizedNumber()

Implementation

String normalizedNumber() {
  return replaceAll(RegExp(r"[^\d+]+"), '');
}