checkAvbctl method

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

Implementation

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