ActorConfig constructor
ActorConfig({
- Agent? agent,
- PollStrategyFactory? pollingStrategyFactory,
- Principal? canisterId,
- Principal? effectiveCanisterId,
- CallConfig callTransform(
- String methodName,
- List args,
- CallConfig callConfig
- CallConfig queryTransform(
- String methodName,
- List args,
- CallConfig callConfig
Implementation
ActorConfig(
{Agent? agent,
PollStrategyFactory? pollingStrategyFactory,
Principal? canisterId,
Principal? effectiveCanisterId,
this.callTransform,
this.queryTransform})
: super(
agent: agent,
pollingStrategyFactory: pollingStrategyFactory,
canisterId: canisterId,
effectiveCanisterId: effectiveCanisterId);