Tag constructor

Tag({
  1. required String key,
  2. bool? propagateAtLaunch,
  3. String? resourceId,
  4. String? resourceType,
  5. String? value,
})

Implementation

Tag({
  required this.key,
  this.propagateAtLaunch,
  this.resourceId,
  this.resourceType,
  this.value,
});