get method

T? get(
  1. String a,
  2. String b
)

Implementation

T? get(String a, String b) {
  final key = _getKey(a, b);
  return _map[key];
}