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: Thu Jul 15 17:16:16 2021 Functions: 0 0 -

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

Generated by: LCOV version 1.15.alpha0w