chatwootClientAuthServiceProvider top-level property
ProviderFamily<ChatwootClientAuthService, ChatwootParameters>
chatwootClientAuthServiceProvider
final
Provides instance of chatwoot client auth service ChatwootClientAuthService.
Implementation
final chatwootClientAuthServiceProvider =
Provider.family<ChatwootClientAuthService, ChatwootParameters>(
(ref, params) {
final unAuthenticatedDio = ref.read(unauthenticatedDioProvider(params));
return ChatwootClientAuthServiceImpl(dio: unAuthenticatedDio);
});