part of 'server_jobs_cubit.dart'; class ServerJobsState extends ServerInstallationDependendState { const ServerJobsState({this.serverJobList = const []}); final List serverJobList; @override List get props => serverJobList; ServerJobsState copyWith({ final List? serverJobList, }) => ServerJobsState( serverJobList: serverJobList ?? this.serverJobList, ); }