CompanyTypeUser constructor

CompanyTypeUser({
  1. int? companyTypeId,
  2. CompanyTypeChannelCompanyType? companyType,
  3. String? id,
  4. TicketApplicationUser? applicationUser,
})

Returns a new CompanyTypeUser instance.

Implementation

CompanyTypeUser({
  this.companyTypeId,
  this.companyType,
  this.id,
  this.applicationUser,
});