getString method

String getString(
  1. String key
)

Reads a key value of String type from Map.

If value/map is NULL or not String type return default value defaultString

Example:

map.getString("username") // thor

Implementation

String getString(String key) => FxMap.getString(this, key);