Future<String> getProp(String key, {bool debug = false}) async { return exec(['getprop', key], debug: debug).then((result) { return result.stdout.toString().trim(); }); }