Target constructor

Target({
  1. required TargetType type,
  2. String? id,
})

Implementation

Target({
  required this.type,
  this.id,
});