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