SpanMetadata constructor

const SpanMetadata({
  1. required String name,
  2. String? actionType,
  3. Object? input,
  4. Map<String, Object?> attributes = const {},
})

Implementation

const SpanMetadata({
  required this.name,
  this.actionType,
  this.input,
  this.attributes = const {},
});