mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
9 lines
180 B
Dart
9 lines
180 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'smart_state.dart';
|
|
|
|
class SmartCubit extends Cubit<SmartState> {
|
|
SmartCubit() : super(SmartInitial());
|
|
}
|