Label constructor

Label({
  1. String? id,
  2. String? orgID,
  3. String? name,
  4. Map<String, String>? properties = const {},
})

Returns a new Label instance.

Implementation

Label({
  this.id,
  this.orgID,
  this.name,
  this.properties = const {},
});