We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d927f38 commit aef0ccaCopy full SHA for aef0cca
lib/src/v3/api/oauth/oauth.dart
@@ -31,10 +31,6 @@ class AuthenticateWithOAuth
31
final httpMethod = HttpMethod.post;
32
33
@override
34
- LoginResponse responseFactory(Map<String, dynamic> json) {
35
- // TODO: Check if this needs to be implemented.
36
- // At this point I don't think so, I don't think this returns anything.
37
- // Instead, I think the OAuth provider hits the redirect_uri route.
38
- throw UnimplementedError();
39
- }
+ LoginResponse responseFactory(Map<String, dynamic> json) =>
+ LoginResponse.fromJson(json);
40
}
0 commit comments