DoubleListTile constructor

const DoubleListTile({
  1. required double value,
  2. required ValueChanged<double> onChanged,
  3. required String title,
  4. String? subtitle,
  5. bool autofocus = false,
  6. List<Widget> actions = const [],
  7. int decimalPlaces = 2,
  8. double? min,
  9. double? max,
  10. double modifier = 1.0,
  11. GestureLongPressCallback? onLongPress,
  12. Key? key,
})

Create an instance.

Implementation

const DoubleListTile({
  required this.value,
  required this.onChanged,
  required this.title,
  this.subtitle,
  this.autofocus = false,
  this.actions = const [],
  this.decimalPlaces = 2,
  this.min,
  this.max,
  this.modifier = 1.0,
  this.onLongPress,
  super.key,
});