LGShowCaseWidget constructor

const LGShowCaseWidget({
  1. Key? key,
  2. required dynamic showCaseKey,
  3. required double height,
  4. required double width,
  5. required ShapeBorder targetShape,
  6. required Widget showCaseWidget,
  7. required String title,
  8. required String description,
  9. Widget? customContent,
})

Implementation

const LGShowCaseWidget(
    {super.key,
    required this.showCaseKey,
    required this.height,
    required this.width,
    required this.targetShape,
    required this.showCaseWidget,
    required this.title,
    required this.description,
    this.customContent});