|
@@ -12,11 +12,13 @@ class GetStartImageEvent extends CashedImageEvent {
|
|
|
final bool cached;
|
|
final bool cached;
|
|
|
final int count;
|
|
final int count;
|
|
|
final String? cachkey;
|
|
final String? cachkey;
|
|
|
|
|
+ final Map<String, String>? httpHeaders;
|
|
|
const GetStartImageEvent({
|
|
const GetStartImageEvent({
|
|
|
required this.url,
|
|
required this.url,
|
|
|
required this.cached,
|
|
required this.cached,
|
|
|
required this.count,
|
|
required this.count,
|
|
|
required this.cachkey,
|
|
required this.cachkey,
|
|
|
|
|
+ required this.httpHeaders,
|
|
|
});
|
|
});
|
|
|
@override
|
|
@override
|
|
|
List<Object> get props => [url, cached];
|
|
List<Object> get props => [url, cached];
|