MeshIstio.fromJson constructor

MeshIstio.fromJson(
  1. Map json_
)

Implementation

MeshIstio.fromJson(core.Map json_)
    : this(
        meshUid: json_.containsKey('meshUid')
            ? json_['meshUid'] as core.String
            : null,
        serviceName: json_.containsKey('serviceName')
            ? json_['serviceName'] as core.String
            : null,
        serviceNamespace: json_.containsKey('serviceNamespace')
            ? json_['serviceNamespace'] as core.String
            : null,
      );