SelectionOptions<T>.fromFuture constructor

SelectionOptions<T>.fromFuture(
  1. Future<List<OptionGroup<T>>> optionGroupListFuture
)

Creates an instance with options resolved from the provided Future.

Implementation

factory SelectionOptions.fromFuture(
        Future<List<OptionGroup<T>>> optionGroupListFuture) =>
    _FutureSelectionOptions<T>(optionGroupListFuture);