Default selected item api for picker

Would be cool if picker has an api method that allows to select a default value from the list when opened. For example:

picker.on('open', () => {
  picker.select(picker.index(2))
})
Parameter   => value
Type        => array
Description => Array with initial values
app.picker.create({
  value: ['value-2'],
  cols: [{ values: ['value-1','value-2','value-3'] }]
});

Oh, missed that one. Thanks!