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