QuickPickOptions constructor

QuickPickOptions({
  1. String? title,
  2. bool? matchOnDescription,
  3. bool? matchOnDetail,
  4. String? placeHolder,
  5. bool? ignoreFocusOut,
  6. bool? canPickMany,
  7. dynamic onDidSelectItem(
    1. Object
    )?,
})

Implementation

factory QuickPickOptions({
  _i2.String? title,
  _i2.bool? matchOnDescription,
  _i2.bool? matchOnDetail,
  _i2.String? placeHolder,
  _i2.bool? ignoreFocusOut,
  _i2.bool? canPickMany,
  _i2.dynamic Function(_i2.Object)? onDidSelectItem,
}) =>
    QuickPickOptions._(
      title: title,
      matchOnDescription: matchOnDescription,
      matchOnDetail: matchOnDetail,
      placeHolder: placeHolder,
      ignoreFocusOut: ignoreFocusOut,
      canPickMany: canPickMany,
      onDidSelectItem:
          onDidSelectItem == null ? null : _i5.allowInterop(onDidSelectItem),
    );