apiEndpointProvider top-level property

ProviderFamily<ApiEndpointBase, String> apiEndpointProvider
final

Implementation

final apiEndpointProvider =
    Provider.family<ApiEndpointBase, String>((ref, apiKey) {
  final state = ref.watch(appConfigurationServiceProvider);
  return state.getApiEndpoint(apiKey);
});