ApigatewayGateway.fromJson constructor

ApigatewayGateway.fromJson(
  1. Map json_
)

Implementation

ApigatewayGateway.fromJson(core.Map json_)
    : this(
        apiConfig: json_.containsKey('apiConfig')
            ? json_['apiConfig'] as core.String
            : null,
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        defaultHostname: json_.containsKey('defaultHostname')
            ? json_['defaultHostname'] as core.String
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] 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,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );