horario del profesional

This commit is contained in:
Felipe
2024-03-27 16:42:50 -05:00
parent ac16be0406
commit d7fe33cf30
26 changed files with 927 additions and 163 deletions
+10
View File
@@ -0,0 +1,10 @@
part of 'service_bloc.dart';
abstract class ServiceState extends Equatable {
const ServiceState();
@override
List<Object> get props => [];
}
class ServiceInitial extends ServiceState {}