Delegation constructor

Delegation({
  1. List<String> tags = const [],
  2. String? owner,
  3. String? delegatedTo,
  4. String? key,
})

Returns a new Delegation instance.

Implementation

Delegation({
  this.tags = const [],
  this.owner,
  this.delegatedTo,
  this.key,
});