# Connector<T> typedef | |
*[<Null safety>](https://dart.dev/null-safety)* | |
void Connector<{T}> = void Function([InterfaceRequest](../package-fidl_fidl/InterfaceRequest-class.md)<T> request) | |
<p>Function passed by service implementation which can be | |
used to serve connection over <code>request</code>.</p> | |
## Implementation | |
```dart | |
typedef Connector<T> = void Function(fidl.InterfaceRequest<T> request); | |
``` | |