second commit

This commit is contained in:
Anbarasu
2026-05-27 10:35:09 +05:30
parent c53794c04c
commit 1435ac47b0
501 changed files with 52818 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import '../../../Helper/Constants/Apiconstants.dart';
import '../../../Model/Response/Authentication/Sms/Smsresponse.dart';
import '../../../Model/Response/Notification/Notificationresponse.dart';
import '../../Provider/Notification/Notificationprovider.dart';
class NotificationRepository{
NotificationProvider notificationProvider = NotificationProvider();
Future<NotificationResponse?> createNotification( data) async {
var result = await notificationProvider.createNotification(data,ApiConstants.notifyUrl);
return result;
}
Future<NotificationResponse?> notifyRider( data) async {
var result = await notificationProvider.NotifyRider(data,ApiConstants.notifyRider);
return result;
}
}