removeSpecialCharacters function

String removeSpecialCharacters(
  1. String cepRawValue
)

Implementation

String removeSpecialCharacters(String cepRawValue) =>
    cepRawValue.replaceAll(RegExp(r'[^0-9]'), '');