getJson method

dynamic getJson(
  1. String key
)

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

Implementation

dynamic getJson(String key) {
  return feature(key).jsonValue;
}