Cover constructor
const
Cover({
- Key? key,
- required ImageProvider<
Object> backgroundImage, - Widget? title,
- Widget? bottom,
- List<
StoreLinkData> storeLinks = const [], - String description = "",
Implementation
const Cover({
super.key,
required this.backgroundImage,
this.title,
this.bottom,
this.storeLinks = const [],
this.description = "",
});