sync bloc

This commit is contained in:
efrilm
2025-10-24 22:25:01 +07:00
parent 4fdd1e44f8
commit 6892895021
10 changed files with 965 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
part of 'sync_bloc.dart';
@freezed
class SyncEvent with _$SyncEvent {
const factory SyncEvent.startSync() = _StartSync;
const factory SyncEvent.cancelSync() = _CancelSync;
}