onRequest method

Future onRequest(
  1. Map<String, dynamic> body
)

Implementation

Future onRequest(Map<String, dynamic> body) async {
  for (final interceptors in this) {
    await interceptors.onRequest?.call(body);
  }
}