InteractivePage constructor

const InteractivePage({
  1. Key? key,
  2. required Widget child,
  3. required void setScrollEnabled(
    1. bool
    ),
  4. required int dismissDragDistance,
  5. required void setBackgroundOpacity(
    1. double
    ),
  6. ImageGalleryHeroProperties? heroProperties,
})

Implementation

const InteractivePage({
  Key? key,
  required this.child,
  required this.setScrollEnabled,
  required this.dismissDragDistance,
  required this.setBackgroundOpacity,
  this.heroProperties,
}) : super(key: key);