TextListTile constructor

const TextListTile({
  1. required String value,
  2. required ValueChanged<String> onChanged,
  3. required String header,
  4. List<Widget> actions = const [],
  5. String? title,
  6. String? labelText,
  7. FormFieldValidator<String?>? validator,
  8. bool autofocus = false,
  9. GestureLongPressCallback? onLongPress,
  10. Key? key,
})

Create an instance.

Implementation

const TextListTile({
  required this.value,
  required this.onChanged,
  required this.header,
  this.actions = const [],
  this.title,
  this.labelText,
  this.validator,
  this.autofocus = false,
  this.onLongPress,
  super.key,
});