other_platform_notification_handler.dart 333 B

123456789101112
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. class OtherPlatformNotificationHandler
  3. extends NotificationHandler<CourseEntryNotification> {
  4. OtherPlatformNotificationHandler()
  5. : super(NotificationTypeEnum.CourseEntryNotification);
  6. @override
  7. void execute(CourseEntryNotification message) {
  8. super.execute(message);
  9. }
  10. }