mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 01:43:13 +00:00
17 lines
428 B
Dart
17 lines
428 B
Dart
|
part of 'server_jobs_cubit.dart';
|
||
|
|
||
|
class ServerJobsState extends ServerInstallationDependendState {
|
||
|
const ServerJobsState({this.serverJobList = const []});
|
||
|
final List<ServerJob> serverJobList;
|
||
|
|
||
|
@override
|
||
|
List<Object?> get props => serverJobList;
|
||
|
|
||
|
ServerJobsState copyWith({
|
||
|
final List<ServerJob>? serverJobList,
|
||
|
}) =>
|
||
|
ServerJobsState(
|
||
|
serverJobList: serverJobList ?? this.serverJobList,
|
||
|
);
|
||
|
}
|