ManagedResource.fromJson constructor
      
      ManagedResource.fromJson(
    
    
- Map json_
Implementation
ManagedResource.fromJson(core.Map json_)
  : this(
      runService:
          json_.containsKey('runService')
              ? RunService.fromJson(
                json_['runService'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );