CompanyTypeTrack constructor

CompanyTypeTrack({
  1. int? companyTypeId,
  2. CompanyTypeChannelCompanyType? companyType,
  3. int? trackId,
  4. GenreTrackTrack? track,
})

Returns a new CompanyTypeTrack instance.

Implementation

CompanyTypeTrack({
  this.companyTypeId,
  this.companyType,
  this.trackId,
  this.track,
});