get method

T? get(
  1. String key
)

Implementation

T? get(final String key) {
  final PerksNameValueMap<T> data = all();
  return data[key];
}