mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-07 01:15:50 -06:00
9 lines
190 B
Dart
9 lines
190 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
part 'tasks_state.dart';
|
|
|
|
class TasksCubit extends Cubit<TasksState> {
|
|
TasksCubit() : super(TasksInitial());
|
|
}
|