FluoFeaturesScreen constructor

const FluoFeaturesScreen({
  1. Key? key,
  2. required String title,
  3. required List<String> features,
  4. required VoidCallback onContinue,
  5. FluoFeaturesScreenStyle style = const FluoFeaturesScreenStyle(),
})

Implementation

const FluoFeaturesScreen({
  super.key,
  required this.title,
  required this.features,
  required this.onContinue,
  this.style = const FluoFeaturesScreenStyle(),
});