Crew constructor

Crew({
  1. String? creditId,
  2. required int id,
  3. Gender? gender,
  4. String? name,
  5. String? profilePath,
  6. String? department,
  7. String? job,
})

Implementation

Crew({
  String? creditId,
  required int id,
  Gender? gender,
  String? name,
  String? profilePath,
  this.department,
  this.job,
}) : super(
        creditId: creditId,
        gender: gender,
        id: id,
        name: name,
        profilePath: profilePath,
      );