DoubleOption constructor

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

Implementation

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