LCOV - code coverage report
Current view: top level - src - initial_url.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 0 3 0.0 %
Date: 2021-03-17 18:38:56 Functions: 0 0 -

          Line data    Source code
       1             : part of 'main.dart';
       2             : 
       3             : class InitialUrl {
       4             :   final String? url;
       5             :   final bool fromValidates;
       6             : 
       7           0 :   const InitialUrl({this.url, this.fromValidates = false})
       8             :       : assert(
       9           0 :           url == null || fromValidates == false,
      10             :           'You can either initialize the url from the state or from a custom one but not both.',
      11             :         ),
      12             :         assert(
      13           0 :           url != null || fromValidates != false,
      14             :           'If you use initialUrl, either provide a url of set fromValidates to true to infer the url from the state.',
      15             :         );
      16             : }

Generated by: LCOV version 1.14