Files
syncrow-app/lib/features/profile/bloc/profile_cubit.dart
2024-02-17 16:27:27 +03:00

9 lines
190 B
Dart

import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
part 'profile_state.dart';
class ProfileCubit extends Cubit<ProfileState> {
ProfileCubit() : super(ProfileInitial());
}