AgentGatewaySelfManaged.fromJson constructor

AgentGatewaySelfManaged.fromJson(
  1. Map json_
)

Implementation

AgentGatewaySelfManaged.fromJson(core.Map json_)
  : this(
      resourceUri: json_['resourceUri'] as core.String?,
      resourceUris: (json_['resourceUris'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );