| |
| |
| |
| # Binding<T> constructor |
| |
| |
| |
| |
| |
| |
| |
| Binding<T>() |
| |
| |
| <p>Creates a binding object in an unbound state.</p> |
| <p>Rather than creating a <a href="../../package-fidl_fidl/Binding-class.md">Binding<T></a> object directly, you typically create |
| a <code>TBinding</code> object, which are subclasses of <a href="../../package-fidl_fidl/Binding-class.md">Binding<T></a> created by the |
| FIDL compiler for a specific interface.</p> |
| |
| |
| |
| ## Implementation |
| |
| ```dart |
| Binding() { |
| _reader |
| ..onReadable = _handleReadable |
| ..onError = _handleError; |
| } |
| ``` |
| |
| |
| |
| |
| |
| |
| |