getByName method

Property getByName(
  1. String name
)

Get the property with the specific name. If not found return an empty instance.

Implementation

Property getByName(String name) => this._map[name] ?? Property.empty();