AgentOtherDeviceId.fromJson constructor
AgentOtherDeviceId.fromJson(
- Map json_
Implementation
AgentOtherDeviceId.fromJson(core.Map json_)
: this(
agentId: json_.containsKey('agentId')
? json_['agentId'] as core.String
: null,
deviceId: json_.containsKey('deviceId')
? json_['deviceId'] as core.String
: null,
);