更新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

@@ -14,8 +14,9 @@ import 'point_comment_state.dart';
class PointCommentBloc extends Bloc<PointCommentEvent, PointCommentState> {
@override
PointCommentState get initialState => PointCommentInitial();
PointCommentBloc() : super(PointCommentInitial());
@override
Stream<PointCommentState> mapEventToState(PointCommentEvent event) async* {