Id constructor

const Id({
  1. String? name,
  2. String? version,
  3. String? os,
  4. String? osVersion,
  5. String? vendor,
  6. String? supportUrl,
  7. String? address,
  8. DateTime? date,
  9. String? command,
  10. String? arguments,
  11. String? environment,
  12. Map<String, String> nonStandardFields = const <String, String>{},
})

Creates a new ID

Implementation

const Id({
  this.name,
  this.version,
  this.os,
  this.osVersion,
  this.vendor,
  this.supportUrl,
  this.address,
  this.date,
  this.command,
  this.arguments,
  this.environment,
  this.nonStandardFields = const <String, String>{},
});