setFilePath method

void setFilePath(
  1. String path, {
  2. bool shouldForceCreatePath = false,
})

Set file name. This method should be called before using eloquent.

Implementation

void setFilePath(String path, {bool shouldForceCreatePath = false}) {
  _filePath = path;
  _shouldForceCreatePath = shouldForceCreatePath;
}