AnalysisNavigationParams.fromNotification constructor

AnalysisNavigationParams.fromNotification(
  1. Notification notification, {
  2. ClientUriConverter? clientUriConverter,
})

Implementation

factory AnalysisNavigationParams.fromNotification(Notification notification,
    {ClientUriConverter? clientUriConverter}) {
  return AnalysisNavigationParams.fromJson(
      ResponseDecoder(null), 'params', notification.params,
      clientUriConverter: clientUriConverter);
}