基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

background_bloc.dart 163 B

123456789
  1. import 'dart:async';
  2. class BackgroundBloc{
  3. StreamController streamController=StreamController.broadcast();
  4. Stream get outData =>streamController.stream;
  5. }