listFeatureViewSyncs method

  1. @override
Future<ListFeatureViewSyncsResponse> listFeatureViewSyncs(
  1. ListFeatureViewSyncsRequest request
)
override

Lists FeatureViewSyncs in a given FeatureView.

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<ListFeatureViewSyncsResponse> listFeatureViewSyncs(
  ListFeatureViewSyncsRequest request,
) async {
  if (isClosed) throw StateError('Service is closed');

  if (_listFeatureViewSyncs case final listFeatureViewSyncs?) {
    return listFeatureViewSyncs(request);
  }
  throw UnsupportedError('listFeatureViewSyncs');
}