setAttributes method

  1. @override
void setAttributes(
  1. Map<String, SentryAttribute> attributes
)
override

Sets attributes on this span, replacing existing attributes with the same keys.

Implementation

@override
void setAttributes(Map<String, SentryAttribute> attributes) {
  _attributes.addAll(attributes);
}