valueForKey method

String? valueForKey(
  1. String key
)

Returns the value associated with the given key from the custom tags.

If the key is not found in the custom tags, returns null.

Implementation

String? valueForKey(String key) {
  return customTags[key];
}