Files
syncrow-app/lib/features/menu/bloc/menu_cubit.dart
mohammad e5e839248d profile
2024-07-23 16:16:31 +03:00

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 = '';
}