readJsonFile function

Map<String, dynamic> readJsonFile(
  1. String path
)

For development only.

Implementation

Map<String, dynamic> readJsonFile(String path) {
  return json.decode(readFile(path));
}