LCOV - code coverage report
Current view: top level - lib\chatwoot_parameters.dart - chatwoot_parameters.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 8 8 100.0 %
Date: Tue Jul 13 13:39:38 2021 Functions: 0 0 -

          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             : }

Generated by: LCOV version 1.15.alpha0w