| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
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 |