Cover constructor

const Cover({
  1. Key? key,
  2. required ImageProvider<Object> backgroundImage,
  3. Widget? title,
  4. Widget? bottom,
  5. List<StoreLinkData> storeLinks = const [],
  6. String description = "",
})

Implementation

const Cover({
  super.key,
  required this.backgroundImage,
  this.title,
  this.bottom,
  this.storeLinks = const [],
  this.description = "",
});