StringOption constructor

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

Implementation

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