ServiceMeshDataPlaneManagement.fromJson constructor
      
      ServiceMeshDataPlaneManagement.fromJson(
    
    
- Map json_
Implementation
ServiceMeshDataPlaneManagement.fromJson(core.Map json_)
    : this(
        details: (json_['details'] as core.List?)
            ?.map((value) => ServiceMeshStatusDetails.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        state: json_['state'] as core.String?,
      );