ParameterCookie constructor

const ParameterCookie({
  1. String? name,
  2. String? description,
  3. bool? required,
  4. bool? deprecated,
  5. String? style,
  6. bool? explode,
  7. bool? allowReserved,
  8. String? example,
  9. required Schema schema,
  10. @JsonKey(name: '\$ref') @_ParamRefConverter() String? ref,
})

Implementation

const factory ParameterCookie(
        {final String? name,
        final String? description,
        final bool? required,
        final bool? deprecated,
        final String? style,
        final bool? explode,
        final bool? allowReserved,
        final String? example,
        required final Schema schema,
        @JsonKey(name: '\$ref') @_ParamRefConverter() final String? ref}) =
    _$ParameterCookieImpl;