Line data Source code
1 : import 'package:equatable/equatable.dart'; 2 : 3 : class ChatwootParameters extends Equatable { 4 : final bool isPersistenceEnabled; 5 : final String baseUrl; 6 : final String clientInstanceKey; 7 : final String inboxIdentifier; 8 : final String? userIdentifier; 9 : 10 2 : ChatwootParameters( 11 : {required this.isPersistenceEnabled, 12 : required this.baseUrl, 13 : required this.inboxIdentifier, 14 : required this.clientInstanceKey, 15 : this.userIdentifier}); 16 : 17 2 : @override 18 2 : List<Object?> get props => [ 19 2 : isPersistenceEnabled, 20 2 : baseUrl, 21 2 : clientInstanceKey, 22 2 : inboxIdentifier, 23 2 : userIdentifier 24 : ]; 25 : }