RssPodcastIndexPerson constructor

RssPodcastIndexPerson({
  1. required String name,
  2. String? role,
  3. String? group,
  4. String? image,
  5. String? link,
})

Implementation

RssPodcastIndexPerson({
  required this.name,
  this.role,
  this.group,
  this.image,
  this.link,
});