ApplicationUserCopyRightOwner constructor

ApplicationUserCopyRightOwner({
  1. int? copyRightOwnerId,
  2. required String name,
  3. double? price,
  4. String? image,
  5. required String slug,
  6. String? container,
  7. OwnerLanguage? language,
  8. DateTime? createDate,
  9. DateTime? changeDate,
  10. List<Track>? tracks = const [],
  11. List<ApplicationUser>? applicationUsers = const [],
})

Returns a new ApplicationUserCopyRightOwner instance.

Implementation

ApplicationUserCopyRightOwner({
  this.copyRightOwnerId,
  required this.name,
  this.price,
  this.image,
  required this.slug,
  this.container,
  this.language,
  this.createDate,
  this.changeDate,
  this.tracks = const [],
  this.applicationUsers = const [],
});