LoopPod constructor

const LoopPod({
  1. Key? key,
  2. dynamic loopEventHandler(
    1. LoopEvent,
    2. Map<String, dynamic>?
    )?,
  3. dynamic customEventHandler(
    1. String,
    2. Map<String, dynamic>?
    )?,
  4. required String podId,
  5. Map<String, dynamic>? extraParams,
  6. bool disableFlowEndNavigation = false,
  7. bool disableDeviceBack = false,
  8. double? width,
  9. dynamic onLoad()?,
  10. bool showShimmer = false,
  11. Color? shimmerColor,
  12. double? shimmerHeight,
  13. String? loadGroup,
  14. String type = "inline",
})

Implementation

const LoopPod(
    {super.key,
    this.loopEventHandler,
    this.customEventHandler,
    required this.podId,
    this.extraParams,
    this.disableFlowEndNavigation = false,
    this.disableDeviceBack = false,
    this.width,
    this.onLoad,
    this.showShimmer = false,
    this.shimmerColor,
    this.shimmerHeight,
    this.loadGroup,
    this.type = "inline"});