CoverFlowCardItems constructor

CoverFlowCardItems({
  1. required List<Widget> images,
  2. required List<String>? titles,
  3. required double currentPagePosition,
  4. required double maxHeight,
  5. required double maxWidth,
  6. required double centerWidgetWidth,
  7. required double nearWidgetWidth,
  8. required double farWidgetWidth,
  9. TextStyle? textStyle,
  10. bool? displayOnlyCenterTitle,
  11. double? shadowOpacity,
  12. Offset? shadowOffset,
})

Implementation

CoverFlowCardItems({
  required this.images,
  required this.titles,
  required this.currentPagePosition,
  required this.maxHeight,
  required this.maxWidth,
  required this.centerWidgetWidth,
  required this.nearWidgetWidth,
  required this.farWidgetWidth,
  this.textStyle,
  this.displayOnlyCenterTitle,
  this.shadowOpacity,
  this.shadowOffset,
});