ManagedZone.fromJson constructor

ManagedZone.fromJson(
  1. Map json_
)

Implementation

ManagedZone.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        dns: json_.containsKey('dns') ? json_['dns'] as core.String : null,
        labels: json_.containsKey('labels')
            ? (json_['labels'] as core.Map<core.String, core.dynamic>).map(
                (key, value) => core.MapEntry(
                  key,
                  value as core.String,
                ),
              )
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        targetProject: json_.containsKey('targetProject')
            ? json_['targetProject'] as core.String
            : null,
        targetVpc: json_.containsKey('targetVpc')
            ? json_['targetVpc'] as core.String
            : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );