Select.from constructor

Select.from(
  1. String? mainArgument,
  2. List clauses,
  3. Message? parent
)

Create a new Select providing mainArgument and the list of possible clauses. Each clause is expected to be a list whose first element is a variable name and whose second element is either a String or a list of strings and Messages or VariableSubstitutions.

Implementation

Select.from(String? mainArgument, List clauses, Message? parent)
    : super.from(mainArgument, clauses, parent);