ConnectionInfo.fromJson constructor

ConnectionInfo.fromJson(
  1. Map json_
)

Implementation

ConnectionInfo.fromJson(core.Map json_)
  : this(
      endpointInfo:
          json_.containsKey('endpointInfo')
              ? EndpointInfo.fromJson(
                json_['endpointInfo'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      serviceAttachment: json_['serviceAttachment'] as core.String?,
    );