Contributor constructor

const Contributor({
  1. ContributorType? type,
  2. @JsonKey(name: '_type') Element? typeElement,
  3. String? name,
  4. @JsonKey(name: '_name') Element? nameElement,
  5. List<ContactDetail>? contact,
})

Implementation

const factory Contributor({
  ContributorType? type,
  @JsonKey(name: '_type') Element? typeElement,
  String? name,
  @JsonKey(name: '_name') Element? nameElement,
  List<ContactDetail>? contact,
}) = _Contributor;