mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
10 lines
232 B
Dart
10 lines
232 B
Dart
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
part 'lights_state.dart';
|
|
|
|
class LightsCubit extends Cubit<LightsState> {
|
|
LightsCubit() : super(LightsInitial());
|
|
|
|
static LightsCubit get(context) => BlocProvider.of(context);
|
|
}
|