signIn method

Future<AuthAccount> signIn()

Obtains the Intent object of the ID authorization screen.

Implementation

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