VscodeQuickPickItem constructor

const VscodeQuickPickItem({
  1. required String label,
  2. String? description,
  3. String? detail,
  4. bool picked = false,
  5. String? value,
})

Implementation

const VscodeQuickPickItem({
  required this.label,
  this.description,
  this.detail,
  this.picked = false,
  this.value,
});