BoardGameRef constructor

const BoardGameRef({
  1. required int? id,
  2. required String? name,
  3. int? yearPublished,
})

Implementation

const BoardGameRef({
  required this.id,
  required this.name,
  this.yearPublished,
});