InstrumentationServiceAttachment.string constructor

InstrumentationServiceAttachment.string({
  1. required String id,
  2. required String value,
})

Create a new attachment with the unique id and string value.

Implementation

InstrumentationServiceAttachment.string({
  required this.id,
  required String value,
}) : stringValue = value;