signInWithIdp method

Future<IdpSignInResponse> signInWithIdp(
  1. IdpSignInRequest request
)

Implementation

Future<IdpSignInResponse> signInWithIdp(IdpSignInRequest request) async =>
    IdpSignInResponse.fromJson(
      await _post(
        _buildUri('accounts:signInWithIdp'),
        request.toJson(),
      ),
    );