build method

Transport build({
  1. List<Interceptor>? interceptors,
})

Build the transport.

Implementation

Transport build({List<Interceptor>? interceptors}) {
  return _FakeTransport(Map.from(_handlers), interceptors);
}