FastOnboardingPage constructor

const FastOnboardingPage({
  1. Key? key,
  2. required String titleText,
  3. List<Widget>? children,
})

Implementation

const FastOnboardingPage({
  Key? key,
  required this.titleText,
  this.children,
}) : super(key: key);