joininliveconsultationnotificationhandler.dart 384 B

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