mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-17 02:25:16 +00:00
9 lines
190 B
Dart
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());
|
|
}
|