EstimatedReadTimeBadge constructor

const EstimatedReadTimeBadge({
  1. Key? key,
  2. required ContentType contentType,
  3. required int estimateReadTime,
  4. int? videoDuration,
  5. bool isAudio = false,
})

Implementation

const EstimatedReadTimeBadge({
  super.key,
  required this.contentType,
  required this.estimateReadTime,
  this.videoDuration,
  this.isAudio = false,
});