IntOption constructor

IntOption({
  1. required String name,
  2. int defaultValue = 0,
  3. String? description,
  4. IconData icon = Icons.gear_six_fill,
  5. required int? reader(),
  6. required void writer(
    1. int? t
    ),
  7. bool shouldShow(
    1. BuildContext context
    ) = _defShouldShow,
})

Implementation

IntOption({
  required super.name,
  super.defaultValue = 0,
  super.description,
  super.icon,
  required super.reader,
  required super.writer,
  super.shouldShow = _defShouldShow,
});