ServiceAttachment.fromJson constructor

ServiceAttachment.fromJson(
  1. Map json_
)

Implementation

ServiceAttachment.fromJson(core.Map json_)
    : this(
        connectionStatus: json_['connectionStatus'] as core.String?,
        localFqdn: json_['localFqdn'] as core.String?,
        targetServiceAttachmentUri:
            json_['targetServiceAttachmentUri'] as core.String?,
      );