signInWithPassword method
Implementation
Future<PasswordSignInResponse> signInWithPassword(
PasswordSignInRequest request,
) async =>
PasswordSignInResponse.fromJson(
await _post(
_buildUri('accounts:signInWithPassword'),
request.toJson(),
),
);