firstKeyWhere method

K? firstKeyWhere(
  1. bool test(
    1. V
    )
)

Implementation

K? firstKeyWhere(bool Function(V) test) => keysWhere(test).firstOrNull;