OptionScreen constructor

OptionScreen({
  1. required String name,
  2. String? description,
  3. IconData icon = Icons.gear_six_fill,
  4. List<Option> options = const [],
  5. bool shouldShow(
    1. BuildContext context
    ) = _defShouldShow,
})

Implementation

OptionScreen({
  required super.name,
  super.description,
  super.icon,
  super.options = const [],
  super.shouldShow = _defShouldShow,
});