getUserMe method
GET {backend}/User/Me with the bearer accessToken. Returns the status
(200 = row exists, 404 = create path).
Implementation
@override
Future<int> getUserMe({
required String backendId,
required String accessToken,
}) async {
getCount += 1;
if (throwOnGet) {
throw StateError('directory transport failure');
}
return getStatus;
}