mirror of
https://github.com/supanadit/geo-smart-app.git
synced 2024-11-10 10:02:20 +00:00
13 lines
286 B
Dart
13 lines
286 B
Dart
import 'package:equatable/equatable.dart';
|
|
|
|
class AuthenticationEvent extends Equatable {
|
|
const AuthenticationEvent();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class AuthenticationStarted extends AuthenticationEvent {}
|
|
|
|
class AuthenticationClear extends AuthenticationEvent {}
|