INITIAL_COMMIT
This commit is contained in:
26
lib/user_path_event.dart
Normal file
26
lib/user_path_event.dart
Normal 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 {}
|
||||
Reference in New Issue
Block a user