mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-01 06:27:17 +00:00
57 lines
1.5 KiB
Dart
57 lines
1.5 KiB
Dart
part of 'backups_cubit.dart';
|
|
|
|
class BackupsState extends ServerInstallationDependendState {
|
|
const BackupsState({
|
|
this.isInitialized = false,
|
|
this.backups = const [],
|
|
this.progress = 0.0,
|
|
this.status = BackupStatusEnum.noKey,
|
|
this.preventActions = true,
|
|
this.error = '',
|
|
this.refreshTimer = const Duration(seconds: 60),
|
|
this.refreshing = true,
|
|
});
|
|
|
|
final bool isInitialized;
|
|
final List<Backup> backups;
|
|
final double progress;
|
|
final BackupStatusEnum status;
|
|
final bool preventActions;
|
|
final String error;
|
|
final Duration refreshTimer;
|
|
final bool refreshing;
|
|
|
|
@override
|
|
List<Object> get props => [
|
|
isInitialized,
|
|
backups,
|
|
progress,
|
|
preventActions,
|
|
status,
|
|
error,
|
|
refreshTimer,
|
|
refreshing
|
|
];
|
|
|
|
BackupsState copyWith({
|
|
final bool? isInitialized,
|
|
final List<Backup>? backups,
|
|
final double? progress,
|
|
final BackupStatusEnum? status,
|
|
final bool? preventActions,
|
|
final String? error,
|
|
final Duration? refreshTimer,
|
|
final bool? refreshing,
|
|
}) =>
|
|
BackupsState(
|
|
isInitialized: isInitialized ?? this.isInitialized,
|
|
backups: backups ?? this.backups,
|
|
progress: progress ?? this.progress,
|
|
status: status ?? this.status,
|
|
preventActions: preventActions ?? this.preventActions,
|
|
error: error ?? this.error,
|
|
refreshTimer: refreshTimer ?? this.refreshTimer,
|
|
refreshing: refreshing ?? this.refreshing,
|
|
);
|
|
}
|