attach method

  1. @override
Timing attach({
  1. required Set<SelfDescribingJson> contexts,
})
override

attach Attaches additional contexts to the event

Implementation

@override
Timing attach({
  required Set<SelfDescribingJson> contexts,
}) =>
    Timing(
      category: category,
      variable: variable,
      timing: timing,
      label: label,
      contexts: this.contexts.union(contexts),
    );