getFullPath static method

String? getFullPath([
  1. StorageType? type
])

Get full path with subdirectory (alias for getBasePath)

获取包含子目录的完整路径

type 存储类型,如果为null则使用默认类型

Implementation

static String? getFullPath([StorageType? type]) {
  return getBasePath(type);
}