EpisodeInfoCard constructor

const EpisodeInfoCard({
  1. Key? key,
  2. required EpisodeResponse episode,
  3. bool canEdit = false,
  4. void onEpisodeUpdated(
    1. EpisodeResponse updated
    )?,
})

Implementation

const EpisodeInfoCard({
  super.key,
  required this.episode,
  this.canEdit = false,
  this.onEpisodeUpdated,
});