watcher method

LocalizationWatcher watcher(
  1. String configFilePath
)

Create the LocalizationWatcher matching the Configuration with the specified configFilePath

Implementation

LocalizationWatcher watcher(final String configFilePath) {
  return FileLocalizationWatcher(
    configFileLocation: configFilePath,
    configuration: this,
    startedAt: DateTime.now(),
  );
}