getProperty<E> method

  1. @override
E? getProperty<E>(
  1. String name
)
override

Return the value of the property with the given name, or null if this node does not have a property with the given name.

Implementation

@override
E? getProperty<E>(String name) {
  return _propertyMap?[name] as E?;
}