OnProxyErrorDetails constructor

OnProxyErrorDetails({
  1. required bool fatal,
  2. required String error,
  3. required String details,
})

Implementation

OnProxyErrorDetails({
  /// If true, the error was fatal and the network transaction was aborted.
  /// Otherwise, a direct connection is used instead.
  required bool fatal,

  /// The error description.
  required String error,

  /// Additional details about the error such as a JavaScript runtime error.
  required String details,
}) : _wrapped = $js.OnProxyErrorDetails(
        fatal: fatal,
        error: error,
        details: details,
      );