Take constructor

Take({
  1. dynamic pattern,
  2. Channel? channel,
  3. bool maybe = false,
  4. Result? result,
})

Creates an instance of a Take effect.

Implementation

Take({this.pattern, this.channel, this.maybe = false, Result? result})
    : super(result: result);