tryString method

String? tryString(
  1. K key
)

Returns the String value for key, or null if absent or not a String.

Implementation

String? tryString(K key) => tryGet<String>(key);