fix supabase storage
This commit is contained in:
@@ -10,7 +10,6 @@ class ServicesState extends Equatable {
|
||||
final String query;
|
||||
final DateTimeRange? dateRange;
|
||||
final bool hasReachedMax;
|
||||
final List<ServiceFileModel> files;
|
||||
|
||||
const ServicesState({
|
||||
required this.status,
|
||||
@@ -20,7 +19,6 @@ class ServicesState extends Equatable {
|
||||
this.query = '',
|
||||
this.dateRange,
|
||||
this.hasReachedMax = false,
|
||||
this.files = const [],
|
||||
});
|
||||
|
||||
ServicesState copyWith({
|
||||
@@ -31,7 +29,6 @@ class ServicesState extends Equatable {
|
||||
String? query,
|
||||
DateTimeRange? dateRange,
|
||||
bool? hasReachedMax,
|
||||
List<ServiceFileModel>? files,
|
||||
}) {
|
||||
return ServicesState(
|
||||
status: status ?? this.status,
|
||||
@@ -41,7 +38,6 @@ class ServicesState extends Equatable {
|
||||
query: query ?? this.query,
|
||||
dateRange: dateRange ?? this.dateRange,
|
||||
hasReachedMax: hasReachedMax ?? this.hasReachedMax,
|
||||
files: files ?? this.files,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -54,6 +50,5 @@ class ServicesState extends Equatable {
|
||||
query,
|
||||
dateRange,
|
||||
hasReachedMax,
|
||||
files,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user