CallConfig.fromMap constructor
Implementation
factory CallConfig.fromMap(Map<String, dynamic> map) {
return CallConfig(
agent: map["agent"],
pollingStrategyFactory: map["pollingStrategyFactory"],
canisterId: map["canisterId"],
effectiveCanisterId: map["effectiveCanisterId"]);
}