getString abstract method

String getString(
  1. {required String key,
  2. String defaultValue = ''}
)

Returns the string value associated with the key, otherwise defaultValue.

If key does not exist in the JSON object, or if there is a specific default value that you want to return when the value associated with key is null, set it to the argument defaultValue.

Implementation

String getString({
  required String key,
  String defaultValue = '',
});