get_remote_log_to_client_handler.dart 374 B

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