AgentFactory constructor
AgentFactory({})
Implementation
AgentFactory(
{required String canisterId,
required String url,
required Service idl,
Identity? identity,
bool? debug = true}) {
_setCanisterId(canisterId);
_identity = identity ?? AnonymousIdentity();
_idl = idl;
_debug = debug ?? true;
_url = url;
}