INITIAL_COMMIT

This commit is contained in:
2024-03-12 21:41:04 +01:00
commit 5d617131ee
138 changed files with 6592 additions and 0 deletions

26
lib/user_path_event.dart Normal file
View File

@ -0,0 +1,26 @@
part of 'user_path_bloc.dart';
@immutable
abstract class UserPathEvent {}
final class UserPathLoginDataChanged extends UserPathEvent {
UserPathLoginDataChanged(this.newSettings);
final SettingsState newSettings;
}
final class UserPathTimeChanged extends UserPathEvent {
UserPathTimeChanged({this.from, this.to});
final DateTime? from;
final DateTime? to;
}
final class UserPathLiveSubscriptionUpdate extends UserPathEvent {
UserPathLiveSubscriptionUpdate(this.point);
final Point point;
}
final class UserPathFullUpdate extends UserPathEvent {}