ActorConfig constructor

const ActorConfig({
  1. Agent? agent,
  2. PollStrategyFactory? pollingStrategyFactory,
  3. Principal? canisterId,
  4. Principal? effectiveCanisterId,
  5. bool callSync = true,
  6. CallConfig callTransform(
    1. String methodName,
    2. List args,
    3. CallConfig callConfig
    )?,
  7. CallConfig queryTransform(
    1. String methodName,
    2. List args,
    3. CallConfig callConfig
    )?,
})

Implementation

const ActorConfig({
  super.agent,
  super.pollingStrategyFactory,
  super.canisterId,
  super.effectiveCanisterId,
  super.callSync,
  this.callTransform,
  this.queryTransform,
});