AgentVersion.fromJson constructor

AgentVersion.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AgentVersion.fromJson(Map<String, dynamic> json) {
  return AgentVersion(
    agentCount: json['AgentCount'] as int,
    version: json['Version'] as String,
  );
}