PlexLookup<T> constructor

const PlexLookup<T>({
  1. Key? key,
  2. required List<T> items,
  3. required String labelOf(
    1. T item
    ),
  4. T? value,
  5. ValueChanged<T?>? onChanged,
  6. String hint = 'Search',
  7. String? label,
  8. bool enabled = true,
  9. String subtitleOf(
    1. T item
    )?,
})

Implementation

const PlexLookup({
  super.key,
  required this.items,
  required this.labelOf,
  this.value,
  this.onChanged,
  this.hint = 'Search',
  this.label,
  this.enabled = true,
  this.subtitleOf,
});