Group constructor

Group({
  1. List<Content>? contents,
  2. List<Credit>? credits,
  3. Category? category,
  4. Rating? rating,
})

Implementation

Group({
  this.contents,
  this.credits,
  this.category,
  this.rating,
});