getPath method
Implementation
Future<String> getPath(
) async {
final request = RequestRepositoryGetPath(
repo: handle,
);
final response = await client.invoke(request);
switch (response) {
case ResponsePath(value: final value): return value;
default: throw UnexpectedResponse();
}
}