ManagedResource.fromJson constructor

ManagedResource.fromJson(
  1. 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,
    );