fromQualifiedKey static method

UserPrefKey fromQualifiedKey(
  1. String prefix,
  2. String key
)

Implementation

static UserPrefKey fromQualifiedKey(String prefix, String key) {
  return UserPrefKey(key.substring(prefix.length));
}