CopyListTile constructor

const CopyListTile({
  1. required String title,
  2. required String subtitle,
  3. bool autofocus = false,
  4. GestureLongPressCallback? onLongPress,
  5. Key? key,
})

Create an instance.

Implementation

const CopyListTile({
  required this.title,
  required this.subtitle,
  this.autofocus = false,
  this.onLongPress,
  super.key,
});