LCOV - code coverage report
Current view: top level - lib/exercises - load_json.dart Coverage Total Hit
Test: lcov.info Lines: 0.0 % 3 0
Test Date: 2025-05-10 20:26:13 Functions: - 0 0

            Line data    Source code
       1              : import 'dart:convert';
       2              : import 'package:flutter/services.dart';
       3              : 
       4              : /// Function that will asynchrnous load the a JSON file by the [filepath]
       5            0 : Future<dynamic> loadJsonData(String filepath) async {
       6            0 :   final String jsonString = await rootBundle.loadString(filepath);
       7            0 :   final jsonConfig = jsonDecode(jsonString);
       8              :   return jsonConfig;
       9              : }
        

Generated by: LCOV version 2.3-1