GoogleApiServiceusageV1Service.fromJson constructor
GoogleApiServiceusageV1Service.fromJson(
- Map json_
Implementation
GoogleApiServiceusageV1Service.fromJson(core.Map json_)
: this(
config: json_.containsKey('config')
? GoogleApiServiceusageV1ServiceConfig.fromJson(
json_['config'] as core.Map<core.String, core.dynamic>)
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
parent: json_.containsKey('parent')
? json_['parent'] as core.String
: null,
state:
json_.containsKey('state') ? json_['state'] as core.String : null,
);