Skip to content

Instantly share code, notes, and snippets.

@NoaTubic
Created April 25, 2022 12:38
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 NoaTubic/31c3b2a9f3b90acc2317ff68c77fd3c1 to your computer and use it in GitHub Desktop.
Save NoaTubic/31c3b2a9f3b90acc2317ff68c77fd3c1 to your computer and use it in GitHub Desktop.
abstract class AuthRepository {
Future<Either<AuthFailure, Unit>> signInWithEmailAndPassword({
required EmailAddress emailAddress,
required Password password,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment