FlutterStoryView constructor

const FlutterStoryView({
  1. Key? key,
  2. required List images,
  3. dynamic onPageChanged(
    1. int
    )?,
  4. VoidCallback? onComplete,
  5. double indicatorHeight = 2,
  6. Color? indicatorColor,
  7. Color? indicatorValueColor,
  8. EdgeInsets? indicatorPadding,
  9. ValueChanged<int>? onStoryIndexChanged,
})

Implementation

const FlutterStoryView({
  super.key,
  required this.images,
  this.onPageChanged,
  this.onComplete,
  this.indicatorHeight = 2,
  this.indicatorColor,
  this.indicatorValueColor,
  this.indicatorPadding,
  this.onStoryIndexChanged,
});