getString method

String? getString(
  1. String name
)

Gets a String attribute value by key. Returns null if the key doesn't exist or if the value is not a String.

Implementation

String? getString(String name) => _getTyped<String>(name);