Select constructor

Select({
  1. Function? selector,
  2. List? args,
  3. Map<Symbol, dynamic>? namedArgs,
  4. Result? result,
})

Creates an instance of a Select effect.

Implementation

Select({this.selector, this.args, this.namedArgs, Result? result})
    : super(result: result);