LCOV - code coverage report
Current view: top level - lib/charts/interface - data_scope.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 1 100.0 %
Date: 2024-10-04 11:12:13 Functions: 0 0 -

          Line data    Source code
       1             : // Copyright 2023 The terCAD team. All rights reserved.
       2             : // Use of this source code is governed by a CC BY-NC-ND 4.0 license that can be found in the LICENSE file.
       3             : 
       4             : import 'package:app_finance/charts/interface/chart_data.dart';
       5             : 
       6             : class DataScope {
       7             :   final List<ChartData> data;
       8             :   final double xMin;
       9             :   final double xMax;
      10             :   final double yMin;
      11             :   final double yMax;
      12             : 
      13           1 :   DataScope({
      14             :     required this.data,
      15             :     required this.xMin,
      16             :     required this.xMax,
      17             :     required this.yMin,
      18             :     required this.yMax,
      19             :   });
      20             : }

Generated by: LCOV version 1.14