signInWithGithub<T extends Auth<AuthKeys> > method
Future<AuthResponse<T> >
signInWithGithub<T extends Auth<AuthKeys> >({
- OAuthAuthenticator? authenticator,
- bool storeToken = false,
- Object? args,
- String? id,
- bool notifiable = true,
Implementation
Future<AuthResponse<T>> signInWithGithub<T extends Auth>({
OAuthAuthenticator? authenticator,
bool storeToken = false,
Object? args,
String? id,
bool notifiable = true,
}) {
return _i<T>("signInWithGithub").signInWithGithub(
authenticator: authenticator,
storeToken: storeToken,
args: args,
id: id,
notifiable: notifiable,
);
}