ApigatewayApiConfigOpenApiDocument.fromJson constructor

ApigatewayApiConfigOpenApiDocument.fromJson(
  1. Map json_
)

Implementation

ApigatewayApiConfigOpenApiDocument.fromJson(core.Map json_)
    : this(
        document: json_.containsKey('document')
            ? ApigatewayApiConfigFile.fromJson(
                json_['document'] as core.Map<core.String, core.dynamic>)
            : null,
      );