MmTeam constructor

MmTeam({
  1. String? id,
  2. int? createAt,
  3. int? updateAt,
  4. int? deleteAt,
  5. String? displayName,
  6. String? name,
  7. String? description,
  8. String? email,
  9. String? type,
  10. String? allowedDomains,
  11. String? inviteId,
  12. bool? allowOpenInvite,
  13. String? policyId,
})

Returns a new MmTeam instance.

Implementation

MmTeam({
  this.id,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.displayName,
  this.name,
  this.description,
  this.email,
  this.type,
  this.allowedDomains,
  this.inviteId,
  this.allowOpenInvite,
  this.policyId,
});