HandleNotificationException constructor

HandleNotificationException([
  1. String? message
])

Implementation

HandleNotificationException([String? message]) {
  if (message != null) {
    this._message =
        'Error processing Push Authentication request:\n $message';
  } else {
    this._message = 'Error processing Push Authentication request.';
  }
}