ConfigurationManager constructor

ConfigurationManager()

Implementation

ConfigurationManager() {
  //ConfigurationValueParameterResolverFactory();

  _coercions = {
    int: (v) => v is int ? v : int.parse(v.toString()),
    double: (v) => v is double ? v : double.parse(v.toString()),
    bool: (v) => v is bool ? v : _parseBool(v.toString()),
    String: (v) => v.toString(),
  };
}