getString method

  1. @override
String getString(
  1. K key
)
override

Returns a value at key as String.

FormatException is thrown if an underlying value is unavailable or cannot be converted to String.

Implementation

@override
String getString(K key) => toStringValue(this[key]);