signInWithGithub method
Implementation
Future<AuthResponse<T>> signInWithGithub({
Object? args,
String? id,
bool notifiable = true,
}) {
return _signInWithOAuth(
provider: 'GITHUB',
doneMsg: msg.signInWithGithub.done,
failureMsg: msg.signInWithGithub.failure,
signIn: () => delegate.signInWithGithub(),
args: args,
id: id,
notifiable: notifiable,
);
}