Executor constructor

Executor({
  1. required String? adbPath,
})

Implementation

Executor({required String? adbPath}) : _adbPath = adbPath {
  debugPrint('Executor: adbPath: $adbPath');
  if (adbPath == null || adbPath.isEmpty) {
    throw AdbNotFoundException(message: 'adbPath is null');
  }
}