TargetGroup constructor

TargetGroup({
  1. String? id,
  2. String? name,
  3. String? description,
})

Returns a new TargetGroup instance.

Implementation

TargetGroup({
  this.id,
  this.name,
  this.description,
});