mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
9 lines
175 B
Dart
9 lines
175 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'menu_state.dart';
|
|
|
|
class MenuCubit extends Cubit<MenuState> {
|
|
MenuCubit() : super(MenuInitial());
|
|
}
|