Files
be_happy_public/lib/presentation/event/spalsh_event.dart
2026-05-12 12:02:40 +03:00

16 lines
393 B
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'package:equatable/equatable.dart';
abstract class SplashEvent extends Equatable {
const SplashEvent();
@override
List<Object> get props => [];
}
// Событие, которое будет отправляться со SplashScreen
class AuthCheckRequested extends SplashEvent {}
class AuthStarted extends SplashEvent {}
class PinVerificationSuccess extends SplashEvent {}