onError method
void
onError(
- dynamic err
Handles a client error.
@api private
Implementation
void onError(err) {
if (hasListeners('error')) {
emit('error', err);
}
}
Handles a client error.
@api private
void onError(err) {
if (hasListeners('error')) {
emit('error', err);
}
}