Skip to content

Instantly share code, notes, and snippets.

@Sumit-Ghosh
Last active February 16, 2022 19:15
Show Gist options
  • Save Sumit-Ghosh/8cf2aa643490d68031b55c60e9583def to your computer and use it in GitHub Desktop.
Save Sumit-Ghosh/8cf2aa643490d68031b55c60e9583def to your computer and use it in GitHub Desktop.
part of 'login_bloc.dart';
// It's a simple abstract class
// which can be extended for other event's
abstract class LoginEvent {
const LoginEvent();
}
/*
Will be used later
class LoginButtonTappedEvent extends LoginEvent {}
class ShowSnackBarButtonTappedEvent extends LoginEvent {}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment