independentSignIn method

Future<AuthAccount> independentSignIn(
  1. String accessToken
)

Obtains the Intent object of the dialog box that requests independent authorization from users.

Implementation

Future<AuthAccount> independentSignIn(
  String accessToken,
) async {
  return AuthAccount.fromMap(
    await _c.invokeMethod(
      'independentSignIn',
      <String, dynamic>{
        ..._params,
        'accessToken': accessToken,
      },
    ),
  );
}