| LCOV - code coverage report | ||||||||||||||||||||||
                
  | 
            ||||||||||||||||||||||
Line data Source code 1 : typedef Json = Map<String, dynamic>; 2 : typedef JsonList = List<dynamic>; 3 : typedef JsonListNested = List<Json>; 4 : 5 : extension JsonUtil on Json { 6 0 : dynamic get(String key) { 7 0 : if (containsKey(key)) return this[key]; 8 : return null; 9 : } 10 : }  | 
            
| Generated by: LCOV version 2.0-1 |