TimeoutError constructor
TimeoutError({
- required String message,
- required TimeoutPhase phase,
- Duration? timeout,
- RequestOptions? requestOptions,
- StackTrace? stackTrace,
- Object? originalError,
- DateTime? timestamp,
Implementation
TimeoutError({
required super.message,
required this.phase,
this.timeout,
super.requestOptions,
super.stackTrace,
super.originalError,
super.timestamp,
});