MeshIstio.fromJson constructor
MeshIstio.fromJson(
- 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,
);