getProperty method

  1. @override
dynamic getProperty(
  1. String name
)
override

Retrieves a specific property value by name.

name is the name of the property to retrieve.

Returns the value of the property (may be null if property doesn't exist).

Implementation

@override
dynamic getProperty(String name) => properties?[name];