createAppSupportDirSync static method

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

Implementation

static Directory? createAppSupportDirSync({String? category}) {
  String? path = getAppSupportPath(category: category);
  return createDirSync(path);
}