MembershipRelation constructor

MembershipRelation({
  1. String? description,
  2. String? displayName,
  3. String? group,
  4. EntityKey? groupKey,
  5. Map<String, String>? labels,
  6. String? membership,
  7. List<MembershipRole>? roles,
})

Implementation

MembershipRelation({
  this.description,
  this.displayName,
  this.group,
  this.groupKey,
  this.labels,
  this.membership,
  this.roles,
});