executeCommand method

Future<String?> executeCommand(
  1. String atCommand, {
  2. bool auth = false,
})

Implementation

Future<String?> executeCommand(String atCommand, {bool auth = false}) async {
  return await _process(atCommand, auth: auth);
}