IntListTile constructor

const IntListTile({
  1. required int value,
  2. required ValueChanged<int> onChanged,
  3. required String title,
  4. GestureLongPressCallback? onLongPress,
  5. String? subtitle,
  6. int? min,
  7. int? max,
  8. int modifier = 1,
  9. bool autofocus = false,
  10. String labelText = 'Number',
  11. Key? key,
})

Create an instance.

Implementation

const IntListTile({
  required this.value,
  required this.onChanged,
  required this.title,
  this.onLongPress,
  this.subtitle,
  this.min,
  this.max,
  this.modifier = 1,
  this.autofocus = false,
  this.labelText = 'Number',
  super.key,
});