numero de solicitudes

This commit is contained in:
Felipe
2024-04-25 23:52:16 -05:00
parent 171b3fd926
commit 8b34e7d12d
5 changed files with 215 additions and 81 deletions
+10 -1
View File
@@ -1,6 +1,6 @@
part of 'service_bloc.dart';
abstract class ServiceState extends Equatable {
class ServiceState extends Equatable {
const ServiceState();
@override
@@ -49,4 +49,13 @@ class ServiceStatusUpdated extends ServiceState {
List<Object> get props => [newStatus];
}
class PendingServicesCountedLoaded extends ServiceState {
final int count;
const PendingServicesCountedLoaded(this.count);
@override
List<Object> get props => [count];
}
class ScoredUpdated extends ServiceState {}