add method

void add({
  1. required String name,
  2. required Property property,
})

Add a new property with a specific name.

Implementation

void add({required String name, required Property property}) =>
    this._map[name] = property;