LCOV - code coverage report
Current view: top level - Users/duwen/Documents/code/dio/dio/lib/src - parameter.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 10 10.0 %
Date: 2021-11-28 14:37:50 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:dio/dio.dart';
       2             : 
       3             : class ListParam<T> {
       4             :   final ListFormat format;
       5             :   List<T> value;
       6             : 
       7           1 :   ListParam(this.value, this.format);
       8             : 
       9           0 :   @override
      10             :   String toString() {
      11           0 :     return 'ListParam{format: $format, value: $value}';
      12             :   }
      13             : 
      14           0 :   @override
      15             :   bool operator ==(Object other) =>
      16             :       identical(this, other) ||
      17           0 :       other is ListParam &&
      18           0 :           runtimeType == other.runtimeType &&
      19           0 :           format == other.format &&
      20           0 :           value == other.value;
      21             : 
      22           0 :   @override
      23           0 :   int get hashCode => format.hashCode ^ value.hashCode;
      24             : }

Generated by: LCOV version 1.14