mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-17 10:35:10 +00:00
8 lines
173 B
Dart
8 lines
173 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
part 'profile_state.dart';
|
|
|
|
class ProfileCubit extends Cubit<ProfileState> {
|
|
ProfileCubit() : super(ProfileInitial());
|
|
}
|