getString method

String? getString(
  1. String key
)

Gets a string value by the given key.

Implementation

String? getString(String key) {
  return _maybeUnwrapValue(_map[key]) as String?;
}