ParameterPath constructor

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

Implementation

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