getOutputDirectoryPath static method

Future<String> getOutputDirectoryPath({
  1. String? subDirectory,
})

Returns the absolute path to the output directory (creates it if needed).

Implementation

static Future<String> getOutputDirectoryPath({String? subDirectory}) async {
  return _resolveOutputDirectory(subDirectory);
}