更新flutter_bloc 6.1.1

This commit is contained in:
toly
2020-11-28 09:56:18 +08:00
parent 8368d89f62
commit 2cfbef2431
19 changed files with 623 additions and 99 deletions

View File

@@ -12,9 +12,8 @@ import 'point_event.dart';
/// 说明:
class PointBloc extends Bloc<PointEvent, PointState> {
PointBloc() : super(PointLoading());
@override
PointState get initialState => PointLoading();
@override
Stream<PointState> mapEventToState(PointEvent event) async* {