getKeyFromValue method

K? getKeyFromValue(
  1. V value
)

Returns the key associated with value, or null if absent.

Implementation

K? getKeyFromValue(V value) => _map2[value];