ServiceMeshMembershipState.fromJson constructor

ServiceMeshMembershipState.fromJson(
  1. Map json_
)

Implementation

ServiceMeshMembershipState.fromJson(core.Map json_)
    : this(
        controlPlaneManagement: json_.containsKey('controlPlaneManagement')
            ? ServiceMeshControlPlaneManagement.fromJson(
                json_['controlPlaneManagement']
                    as core.Map<core.String, core.dynamic>)
            : null,
        dataPlaneManagement: json_.containsKey('dataPlaneManagement')
            ? ServiceMeshDataPlaneManagement.fromJson(
                json_['dataPlaneManagement']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );