totalEpisodes property

  1. @JsonKey(name: 'total_episodes', defaultValue: 0, fromJson: convertToIntIfDoubleValue)
int? totalEpisodes
getter/setter pair

The number of total episodes in this show

Implementation

@JsonKey(
  name: 'total_episodes',
  defaultValue: 0,
  fromJson: convertToIntIfDoubleValue,
)
int? totalEpisodes;