Line data Source code
1 : 2 : 3 : import 'package:chatwoot_client_sdk/chatwoot_callbacks.dart'; 4 : import 'package:chatwoot_client_sdk/chatwoot_parameters.dart'; 5 : 6 : class RepositoryParameters{ 7 : ChatwootParameters params; 8 : ChatwootCallbacks callbacks; 9 : 10 1 : RepositoryParameters({ 11 : required this.params, 12 : required this.callbacks 13 : }); 14 : }