Genre constructor

Genre({
  1. required int id,
  2. required String name,
})

Implementation

Genre({required this.id, required this.name});