hasAvbctl method

Future<bool> hasAvbctl({
  1. bool debug = false,
})

Implementation

Future<bool> hasAvbctl({bool debug = false}) async {
  return command('avbctl', debug: debug).then((_) => true).catchError((e) => false);
}