Last active
October 1, 2021 09:05
-
-
Save enyo/713ac0535a6a7bed3d661e5e0dc8db5b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AccountService extends AccountServiceBase { | |
@override | |
Future<Empty> sendEmailVerification(ServiceCall call, VerificationRequest request) { | |
// TODO: implement sendEmailVerification | |
throw UnimplementedError(); | |
} | |
@override | |
Future<User> signInWithPassword(ServiceCall call, PasswordSignInRequest request) { | |
// TODO: implement signInWithPassword | |
throw UnimplementedError(); | |
} | |
@override | |
Future<Empty> changePassword(ServiceCall call, ChangePasswordRequest request) { | |
// TODO: implement changePassword | |
throw UnimplementedError(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment