meeting_hangup_handle.dart 356 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. /// 挂断通知
  3. class MeetingHangupNotificationHandler
  4. extends NotificationHandler<MeetingHangupNotification> {
  5. MeetingHangupNotificationHandler()
  6. : super(NotificationTypeEnum.MeetingHangupNotification);
  7. @override
  8. void execute(MeetingHangupNotification message) {
  9. super.execute(message);
  10. }
  11. }