propertyAsFileContentJSON method

dynamic propertyAsFileContentJSON(
  1. String key, [
  2. File? def
])

Implementation

dynamic propertyAsFileContentJSON(String key, [File? def]) {
  var s = propertyAsFileContentString(key, def);
  return s != null ? dart_convert.json.decode(s) : null;
}