hashKey method

  1. @protected
String hashKey(
  1. String key
)

Hashes a key to be used as a cache key.

Implementation

@protected
String hashKey(String key) => md5.convert(key.codeUnits).toString();