emergencycallnotificationhandler.dart 355 B

12345678910111213
  1. import 'package:fis_jsonrpc/rpc.dart';
  2. ///急诊呼叫
  3. class EmergencyCallNotificationHandler
  4. extends NotificationHandler<EmergencyCallNotification> {
  5. EmergencyCallNotificationHandler()
  6. : super(NotificationTypeEnum.EmergencyCallNotification);
  7. @override
  8. void execute(EmergencyCallNotification message) {
  9. super.execute(message);
  10. }
  11. }