HttpInterceptorHelper class
Helper to intercept HTTP requests made with http package
Usage:
import 'package:http/http.dart' as http;
// Wrap your http calls
final response = await NetworkInterceptor.interceptHttpRequest(
() => http.get(Uri.parse('https://api.example.com/data')),
);
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
interceptHttpRequest<
T> (Future< T> requestFn()) → Future<T> - Intercept an HTTP request made with http package