Settings constructor

Settings()

Public factory method to provide the

Implementation

factory Settings() {
  assert(
      _cacheProvider != null,
      'Must call Settings.init(cacheProvider)'
      ' before using settings!');
  return _instance;
}