GoogleCloudApihubV1HttpRequest.fromJson constructor

GoogleCloudApihubV1HttpRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApihubV1HttpRequest.fromJson(core.Map json_)
  : this(
      headers: (json_['headers'] as core.Map<core.String, core.dynamic>?)
          ?.map(
            (key, value) => core.MapEntry(
              key,
              GoogleCloudApihubV1Header.fromJson(
                value as core.Map<core.String, core.dynamic>,
              ),
            ),
          ),
    );