mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
8 lines
193 B
Dart
8 lines
193 B
Dart
|
part of 'welcome_bloc.dart';
|
||
|
|
||
|
@freezed
|
||
|
abstract class WelcomeEvent with _$WelcomeEvent {
|
||
|
const factory WelcomeEvent.check() = _Check;
|
||
|
const factory WelcomeEvent.authCheck() = _AuthCheck;
|
||
|
}
|