ProductionCompany constructor

ProductionCompany({
  1. required int id,
  2. required String logoPath,
  3. required String name,
  4. required String originCountry,
})

Implementation

ProductionCompany({
  required this.id,
  required this.logoPath,
  required this.name,
  required this.originCountry,
});