openPicker<K, V> function

  1. @deprecated
Future<KeyedOption<K, V>?> openPicker<K, V>(
  1. BuildContext context, {
  2. dynamic title,
  3. dynamic content,
  4. required Set<KeyedOption<K, V>> options,
})

Implementation

@deprecated
Future<KeyedOption<K, V>?> openPicker<K, V>(BuildContext context,
        {title, content, required Set<KeyedOption<K, V>> options}) =>
    showPicker(context, title: title, content: content, options: options);