Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
notifications_repository.dart
Go to the documentation of this file.
1import 'package:dartz/dartz.dart';
2
3import '../../../../core/error/failures.dart';
4import '../entities/notification_entity.dart';
5
6abstract class NotificationsRepository {
7
8 Future<Either<Failure, List<NotificationEntity>>> getNotifications({required int userId});
9
10}
sealed class CheckInOutEvent extends Equatable userId
Future< Either< Failure, List< NotificationEntity > > > getNotifications({required int userId})