LCOV - code coverage report
Current view: top level - domain/entities - token_info.dart (source / functions) Coverage Total Hit
Test: lcov.info Lines: 100.0 % 1 1
Test Date: 2025-01-30 01:10:00 Functions: - 0 0

            Line data    Source code
       1              : ///
       2              : /// Info which we get over the Smart Contract of an Token
       3              : ///
       4              : class TokenInfo {
       5              :   final int decimals;
       6              :   final num maxSupply;
       7              :   final String symbol;
       8              :   final String name;
       9              :   final String contractAddress;
      10              :   final int? id;
      11              : 
      12            1 :   const TokenInfo({
      13              :     required this.decimals,
      14              :     required this.maxSupply,
      15              :     required this.symbol,
      16              :     required this.name,
      17              :     required this.contractAddress,
      18              :     this.id,
      19              :   });
      20              : }
        

Generated by: LCOV version 2.0-1