Contributor constructor

const Contributor({
  1. required String name,
  2. required ResponsibilityRole role,
  3. String? identifier,
})

Implementation

const Contributor({
  required this.name,
  required this.role,
  this.identifier,
});