StartDataCollectionByAgentIdsResponse.fromJson constructor
Implementation
factory StartDataCollectionByAgentIdsResponse.fromJson(
Map<String, dynamic> json) {
return StartDataCollectionByAgentIdsResponse(
agentsConfigurationStatus: (json['agentsConfigurationStatus'] as List?)
?.whereNotNull()
.map((e) =>
AgentConfigurationStatus.fromJson(e as Map<String, dynamic>))
.toList(),
);
}