knownDevicesFromFile method
Implementation
knownDevicesFromFile(File file) async {
// Read the file
String contents = await file.readAsString();
var jsonString = json.decode(contents);
knownDevicesFromJson(jsonString);
}
knownDevicesFromFile(File file) async {
// Read the file
String contents = await file.readAsString();
var jsonString = json.decode(contents);
knownDevicesFromJson(jsonString);
}