mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
10 lines
265 B
Dart
10 lines
265 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
part 'dashboard_state.dart';
|
|
|
|
class DashboardCubit extends Cubit<DashboardState> {
|
|
DashboardCubit() : super(DashboardInitial());
|
|
|
|
static DashboardCubit of(context) => BlocProvider.of<DashboardCubit>(context);
|
|
}
|