GuideScreen constructor

const GuideScreen(
  1. {Key? key,
  2. required String title,
  3. required String content,
  4. required String subTitle,
  5. required List<Source?> curators,
  6. VoidCallback? onDismiss}
)

Implementation

const GuideScreen(
    {super.key,
    required this.title,
    required this.content,
    required this.subTitle,
    required this.curators,
    this.onDismiss});