OnActionIgnoredDetails constructor

OnActionIgnoredDetails({
  1. required String requestId,
  2. required IgnoredActionType action,
})

Implementation

OnActionIgnoredDetails({
  /// The ID of the request. Request IDs are unique within a browser session.
  /// As a result, they could be used to relate different events of the same
  /// request.
  required String requestId,

  /// The proposed action which was ignored.
  required IgnoredActionType action,
}) : _wrapped = $js.OnActionIgnoredDetails(
        requestId: requestId,
        action: action.toJS,
      );