remove method

Property remove(
  1. String name
)

Remove the property with the specific name and return the deleted property. If not found return an empty instance.

Implementation

Property remove(String name) => this._map.remove(name) ?? Property.empty();