Line data Source code
1 : import 'package:chatwoot_client_sdk/chatwoot_callbacks.dart'; 2 : import 'package:chatwoot_client_sdk/chatwoot_parameters.dart'; 3 : import 'package:chatwoot_client_sdk/di/modules.dart'; 4 : 5 : /// Represent all needed parameters necessary for [chatwootRepositoryProvider] to successfully provide an instance 6 : /// of [ChatwootRepository]. 7 : class RepositoryParameters { 8 : /// See [ChatwootParameters] 9 : ChatwootParameters params; 10 : 11 : /// See [ChatwootCallbacks] 12 : ChatwootCallbacks callbacks; 13 : 14 1 : RepositoryParameters({required this.params, required this.callbacks}); 15 : }