AgentOptions.fromJson constructor

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

Implementation

factory AgentOptions.fromJson(Map<String, dynamic> json) => AgentOptions(
  agentId: json['agentId'] as String,
  agentVersion: json['agentVersion'] as String,
);