strip method

  1. @override
String? strip(
  1. String? value
)
override

Implementation

@override
String? strip(final String? value) =>
    value?.replaceAll(RegExp('[^A-Z0-9]'), '');