cancelliveconsultationnotificationhandler.dart 400 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///取消接听
  3. class CancelLiveConsultationNotificationHandler
  4. extends NotificationHandler<CancelLiveConsultationNotification> {
  5. CancelLiveConsultationNotificationHandler()
  6. : super(NotificationTypeEnum.CancelLiveConsultationNotification);
  7. @override
  8. void execute(CancelLiveConsultationNotification message) {
  9. super.execute(message);
  10. }
  11. }