FileConfigReader constructor

FileConfigReader(
  1. [String? path]
)

Creates a new instance of the config reader.

  • path (optional) a path to configuration file.

Implementation

FileConfigReader([String? path]) : super() {
  _path = path;
}