MediaStrip constructor

const MediaStrip({
  1. Key? key,
  2. required List<MediaStripItem> items,
  3. double height = 160,
  4. double itemWidth = 200,
  5. Map<String, String>? headers,
})

Implementation

const MediaStrip({
  super.key,
  required this.items,
  this.height = 160,
  this.itemWidth = 200,
  this.headers,
});