Properties.fromFile constructor

Properties.fromFile(
  1. String path
)

Create a new properties instance from file path.

Implementation

Properties.fromFile(String path) {
  this._sourceFile = path;

  _initFromFile();
}