createAppSupportDir static method

Future<Directory?> createAppSupportDir({
  1. String? category,
})

Implementation

static Future<Directory?> createAppSupportDir({String? category}) async {
  await initAppSupportDir();
  String? path = getAppSupportPath(category: category);
  return createDir(path);
}