add method

Properties add(
  1. Map<String, dynamic> properties
)

Implementation

Properties add(Map<String, dynamic> properties) {
  Map<String, dynamic> props = Map.of(otherProperties)..addAll(properties);
  return Properties(otherProperties: props);
}