requestSignIn method

  1. @override
void requestSignIn([
  1. RowndSignInOptions? signInOpts
])
override

Implementation

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