signInWithMicrosoft method

Future<AuthResponse<T>> signInWithMicrosoft({
  1. Object? args,
  2. String? id,
  3. bool notifiable = true,
})
inherited

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,
  );
}