Trace constructor

Trace(
  1. String id,
  2. String name, {
  3. Map<String, dynamic>? listOfAttributes,
})

Implementation

Trace(this.id, this.name, {Map<String, dynamic>? listOfAttributes})
    : this.attributes = listOfAttributes ?? new Map<String, dynamic>();