DelegationDto constructor

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

Returns a new DelegationDto instance.

Implementation

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