streamの一部を切り取る
streamのサブスクリプションした瞬間のデータや、一定の条件を満たした時のデータを取得したい場合は、
code:stream.dart
List<ImageData> frames = await concatDorker.onMessage.first;
List<ImageData> frames = await concatDorker.onMessage.firstWhere((data) => data.length > 0);
のようにfirstやfirstWhereを使って、Futureにしてからデータを取得することができる。