blob: 4c41b0142654f533017582bea44cc34263094b2b [file] [log] [blame] [view] [edit]
# InterfacePair<T> constructor
InterfacePair<T>()
## Implementation
```dart
InterfacePair() {
ChannelPair pair = ChannelPair();
request = InterfaceRequest<T>(pair.first);
handle = InterfaceHandle<T>(pair.second);
}
```