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