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.

15 lines
312 B

3 years ago
// import 'dart:async';
3 years ago
import 'package:bloc/bloc.dart';
import './bloc.dart';
class GroupBloc extends Bloc<GroupEvent, GroupState> {
3 years ago
GroupBloc() : super(InitialGroupState());
3 years ago
// @override
// Stream<GroupState> mapEventToState(
// GroupEvent event,
// ) async* {
// // TODO: Add Logic
// }
3 years ago
}