Skip to content

Instantly share code, notes, and snippets.

@felangel
Created August 4, 2019 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felangel/b2dcae688958fa09892f8ae6245acd38 to your computer and use it in GitHub Desktop.
Save felangel/b2dcae688958fa09892f8ae6245acd38 to your computer and use it in GitHub Desktop.
[flutter_firestore_todos] authentication events
import 'package:equatable/equatable.dart';
import 'package:meta/meta.dart';
@immutable
abstract class AuthenticationEvent extends Equatable {
AuthenticationEvent([List props = const []]) : super(props);
}
class AppStarted extends AuthenticationEvent {
@override
String toString() => 'AppStarted';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment