mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 18:16:21 +00:00
13 lines
252 B
Dart
13 lines
252 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
part 'menu_state.dart';
|
|
|
|
class MenuCubit extends Cubit<MenuState> {
|
|
MenuCubit() : super(MenuInitial());
|
|
|
|
static MenuCubit of(context) => BlocProvider.of<MenuCubit>(context);
|
|
|
|
String name = '';
|
|
|
|
}
|