signIn static method

Obtains the Intent object of the ID authorization screen.

Implementation

static Future<AuthAccount> signIn([AccountAuthParamsHelper? h]) async {
  return AuthAccount.fromMap(await _c.invokeMethod("signIn",
      h != null ? h.toMap() : new AccountAuthParamsHelper().toMap()));
}