LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
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 |