ActorConfig constructor

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

Implementation

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