ExtractedMetadata constructor

const ExtractedMetadata({
  1. required String cleanName,
  2. String? allureId,
  3. String? displayName,
  4. List<AllureLabel> labels = const <AllureLabel>[],
  5. List<AllureLink> links = const <AllureLink>[],
})

Creates extracted metadata.

Implementation

const ExtractedMetadata({
  required this.cleanName,
  this.allureId,
  this.displayName,
  this.labels = const <AllureLabel>[],
  this.links = const <AllureLink>[],
});