mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 01:24:54 +00:00
15 lines
271 B
Dart
15 lines
271 B
Dart
part of 'home_cubit.dart';
|
|
|
|
@immutable
|
|
abstract class HomeState {}
|
|
|
|
class HomeInitial extends HomeState {}
|
|
|
|
class HomeLoading extends HomeState {}
|
|
|
|
class HomeSuccess extends HomeState {}
|
|
|
|
class HomeFailure extends HomeState {}
|
|
|
|
class HomeChangeIndex extends HomeState {}
|