AgentConfiguration constructor

AgentConfiguration({
  1. required int periodInSeconds,
  2. required bool shouldProfile,
  3. Map<AgentParameterField, String>? agentParameters,
})

Implementation

AgentConfiguration({
  required this.periodInSeconds,
  required this.shouldProfile,
  this.agentParameters,
});