get method

BitmapDescriptor? get(
  1. String key,
  2. int width,
  3. int height
)

Implementation

BitmapDescriptor? get(String key, int width, int height) {
  return lruMap[Object.hash(key, width, height)];
}