leave_handler.dart 389 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///成员离开通知
  3. class LeaveConsultationNotificationHandler
  4. extends NotificationHandler<LeaveLiveConsultationNotification> {
  5. LeaveConsultationNotificationHandler()
  6. : super(NotificationTypeEnum.LeaveConsultationNotification);
  7. @override
  8. void execute(LeaveLiveConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }