getSCreenShortCode static method

String getSCreenShortCode(
  1. String input
)

Implementation

static String getSCreenShortCode(String input) {
  String alphabetsOnly = input.replaceAll(RegExp(r'[^a-zA-Z]'), '');
  ConditionalLogs().customLog(alphabetsOnly);
  return alphabetsOnly;
}