Binding<T> constructor

Binding<T>()

Implementation

Binding() {
  _reader
    ..onReadable = _handleReadable
    ..onError = _handleError;
}