getNotificationsByApplication method
Get notifications by application
Implementation
Future<List<Notification>> getNotificationsByApplication({
int? page,
int? limit,
String? search,
String? sortBy,
String? sortOrder,
}) async {
return await _platform.getNotificationsByApplication(
page: page,
limit: limit,
search: search,
sortBy: sortBy,
sortOrder: sortOrder,
);
}