addStream method - WebSocket class - dart:io library (original) (raw)

description

addStream abstract method

Future addStream(

  1. Stream stream )

override

Sends data from a stream on WebSocket connection. Each data event fromstream will be send as a single WebSocket frame. The data from streammust be either Strings, or List<int>s holding bytes.

Implementation

Future addStream(Stream stream);