getBasePath method

String getBasePath(
  1. {required String appDirDocPath}
)

Returns the resource path for within the applications documents directory.

Implementation

String getBasePath({required String appDirDocPath}) {
  return path.join(appDirDocPath, name);
}