send_result_to_client_notification_handler.dart 364 B

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