createTempDirSync static method

Directory? createTempDirSync({
  1. String? category,
})

Implementation

static Directory? createTempDirSync({String? category}) {
  String? path = getTempPath(category: category);
  return createDirSync(path);
}