addInterceptor method

Future<void> addInterceptor(
  1. Map<String, String> interceptor(
    1. Map<String, String>
    )
)

Implementation

Future<void> addInterceptor(
  Map<String, String> Function(Map<String, String>) interceptor,
) {
  throw UnimplementedError('addInterceptor() has not been implemented.');
}