switch_live_course_video_handler.dart 355 B

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