listFiles method
Lists the metadata for Files owned by the requesting project.
Throws a http.ClientException if there were problems communicating with
the API service. Throws a ServiceException if the API method failed for
any reason.
Implementation
@override
Future<ListFilesResponse> listFiles(ListFilesRequest request) async {
if (isClosed) throw StateError('Service is closed');
if (_listFiles case final listFiles?) {
return listFiles(request);
}
throw UnsupportedError('listFiles');
}