onResponse method

Future onResponse(
  1. dynamic response
)

Implementation

Future onResponse(dynamic response) async {
  for (final interceptors in this) {
    await interceptors.onResponse?.call(response);
  }
}