switchvideoplayconsultationhandler.dart 385 B

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