getString method

String getString(
  1. String key
)

Gets the value for a given key as a String.

Returns an empty String if the key does not exist.

Implementation

String getString(String key) {
  throw UnimplementedError('getString() is not implemented');
}