Header class abstract
Represents a response header definition.
This class defines a single header, which can include a description and a schema for its value.
- Available extensions
- Annotations
-
- @Freezed(copyWith: true, fromJson: true, toJson: true, equal: true)
Constructors
Properties
-
copyWith
→ $HeaderCopyWith<
Header> -
Create a copy of Header
with the given fields replaced by the non-null parameter values.
no setterinherited
- description → String?
-
A brief description of the header.
no setterinherited
- format → String?
-
The format of the header value (for OpenAPI 2.0).
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- ref → String?
-
The reference to the header value
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- schema → Schema?
-
The schema for the header value.
no setterinherited
- type → String?
-
The data type of the header value (for OpenAPI 2.0).
no setterinherited
Methods
-
map<
TResult extends Object?> (TResult $default(_Header value)) → TResult -
Available on Header, provided by the HeaderPatterns extension
Aswitch
-like method, using callbacks. -
mapOrNull<
TResult extends Object?> (TResult? $default(_Header value)?) → TResult? -
Available on Header, provided by the HeaderPatterns extension
A variant ofmap
that fallback to returningnull
. -
maybeMap<
TResult extends Object?> (TResult $default(_Header value)?, {required TResult orElse()}) → TResult -
Available on Header, provided by the HeaderPatterns extension
A variant ofmap
that fallback to returningorElse
. -
maybeWhen<
TResult extends Object?> (TResult $default(String? description, String? type, String? format, Schema? schema, String? ref)?, {required TResult orElse()}) → TResult -
Available on Header, provided by the HeaderPatterns extension
A variant ofwhen
that fallback to anorElse
callback. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
Serializes this Header to a JSON map.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
when<
TResult extends Object?> (TResult $default(String? description, String? type, String? format, Schema? schema, String? ref)) → TResult -
Available on Header, provided by the HeaderPatterns extension
Aswitch
-like method, using callbacks. -
whenOrNull<
TResult extends Object?> (TResult? $default(String? description, String? type, String? format, Schema? schema, String? ref)?) → TResult? -
Available on Header, provided by the HeaderPatterns extension
A variant ofwhen
that fallback to returningnull
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited