strip method

String strip(
  1. String value
)

Implementation

String strip(String value) => value.replaceAll(RegExp(r'\D'), '');