requestSignIn method
Implementation
@override
requestSignIn([RowndSignInOptions? signInOpts]) {
if (signInOpts != null) {
methodChannel.invokeMethod('requestSignIn',
{"postSignInRedirect": signInOpts.postSignInRedirect});
} else {
methodChannel.invokeMethod('requestSignIn');
}
}