addProperties method

Link addProperties(
  1. Map<String, dynamic> properties
)

Makes a copy of this Link after merging in the given additional other properties.

Implementation

Link addProperties(Map<String, dynamic> properties) =>
    copy(properties: this.properties.add(properties));