FluoInfoScreen constructor

const FluoInfoScreen({
  1. Key? key,
  2. required String title,
  3. required VoidCallback onContinue,
  4. FluoInfoScreenStyle style = const FluoInfoScreenStyle(),
  5. Widget? icon,
  6. String? subtitle,
  7. String? continueButtonTitle,
})

Implementation

const FluoInfoScreen({
  super.key,
  required this.title,
  required this.onContinue,
  this.style = const FluoInfoScreenStyle(),
  this.icon,
  this.subtitle,
  this.continueButtonTitle,
});