TvShowGridItem constructor

const TvShowGridItem({
  1. Key? key,
  2. bool headless = false,
  3. required TvShow tvShow,
  4. Color? backgroundColor,
  5. DateFormat? dateFormat,
  6. required VoidCallback onRefresh,
})

Implementation

const TvShowGridItem({
  Key? key,
  this.headless = false,
  required this.tvShow,
  this.backgroundColor,
  this.dateFormat,
  required this.onRefresh,
}) : super(key: key);