Call constructor

Call(
  1. Function fn, {
  2. List? args,
  3. Map<Symbol, dynamic>? namedArgs,
  4. Function? Catch,
  5. Function? Finally,
  6. String? name,
  7. Result? result,
})

Creates an instance of a Call effect.

Implementation

Call(this.fn,
    {this.args,
    this.namedArgs,
    this.Catch,
    this.Finally,
    this.name,
    Result? result})
    : super(result: result);