NUISpotlightContainer constructor

NUISpotlightContainer({
  1. Key? key,
  2. required Widget child,
  3. NUISpotlightController? controller,
  4. int? initialSpotlightIndex,
  5. Color? dimColor,
  6. bool animation = false,
  7. bool enabled = true,
  8. Function? onTap,
  9. bool ignoring = true,
})

Implementation

NUISpotlightContainer({
  Key? key,
  required this.child,
  this.controller,
  this.initialSpotlightIndex,
  this.dimColor,
  this.animation = false,
  this.enabled = true,
  this.onTap,
  this.ignoring = true
}) : super(key: key);