ExecuteActionBlock constructor

ExecuteActionBlock(
  1. ActionBlockTarget target, {
  2. Map<String, Object?>? params,
  3. String? outputAs,
  4. bool shouldSetState = false,
})

Implementation

ExecuteActionBlock(
  this.target, {
  Map<String, Object?>? params,
  this.outputAs,
  this.shouldSetState = false,
}) : params = normalizeExpressionMap(params ?? const <String, Object?>{});