Group constructor

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

Implementation

const Group({
  this.contents = const <Content>[],
  this.credits = const <Credit>[],
  this.category,
  this.rating,
});