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