getHashKey static method

String getHashKey(
  1. String value
)

Implementation

static String getHashKey(String value) {
  String key = keyMap[value] ?? hashStr(value.replaceAll(RegExp(r'\s+'), ''));
  keyMap[value] = key;
  return key;
}