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 String id,
  required String value,
})  : id = id,
      stringValue = value;