refresh method

Future<bool> refresh()

Implementation

Future<bool> refresh() async {
  var model = await _getConfig(true);
  if (model != null) _config = model;
  return true;
}