RequestSyncDevicesRequest.fromJson constructor

RequestSyncDevicesRequest.fromJson(
  1. Map json_
)

Implementation

RequestSyncDevicesRequest.fromJson(core.Map json_)
    : this(
        agentUserId: json_.containsKey('agentUserId')
            ? json_['agentUserId'] as core.String
            : null,
        async:
            json_.containsKey('async') ? json_['async'] as core.bool : null,
      );