ManagedService.fromJson constructor

ManagedService.fromJson(
  1. Map json_
)

Implementation

ManagedService.fromJson(core.Map json_)
    : this(
        producerProjectId: json_.containsKey('producerProjectId')
            ? json_['producerProjectId'] as core.String
            : null,
        serviceName: json_.containsKey('serviceName')
            ? json_['serviceName'] as core.String
            : null,
      );