ManagedService.fromJson constructor
ManagedService.fromJson(
- 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,
);