ResourceResponse constructor
- String? eTag,
- required bool mustRevalidate,
- required bool noContent,
- DateTime? modified,
- required ResponseSourceType source,
- required bool notModified,
- DateTime? expires,
- required int size,
- ResponseError? error,
Implementation
ResourceResponse({
this.eTag,
required this.mustRevalidate,
required this.noContent,
this.modified,
required this.source,
required this.notModified,
this.expires,
required this.size,
this.error,
});