AgentOtherDeviceId.fromJson constructor

AgentOtherDeviceId.fromJson(
  1. 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,
      );