LoadingFailedEvent constructor

LoadingFailedEvent({
  1. required RequestId requestId,
  2. required MonotonicTime timestamp,
  3. required ResourceType type,
  4. required String errorText,
  5. bool? canceled,
  6. BlockedReason? blockedReason,
  7. CorsErrorStatus? corsErrorStatus,
})

Implementation

LoadingFailedEvent(
    {required this.requestId,
    required this.timestamp,
    required this.type,
    required this.errorText,
    this.canceled,
    this.blockedReason,
    this.corsErrorStatus});