mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 06:54:54 +00:00
9 lines
175 B
Dart
9 lines
175 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'auth_state.dart';
|
|
|
|
class AuthCubit extends Cubit<AuthState> {
|
|
AuthCubit() : super(AuthInitial());
|
|
}
|