getString method

String? getString(
  1. String key
)

@param key The feature key @returns The value of the string feature or null if the feature value not set or does not exist

Implementation

String? getString(String key) {
  return feature(key).stringValue;
}