get method

Constant? get(
  1. String key
)

Gets a property value by name.

@param key The property name @return The property value, or null if not found

Implementation

Constant? get(String key) => props[key];