load method

void load()

Load list of available devices

Implementation

void load() {
  if(_loaded) return;
  _loaded = true;

  _loadPlayoutDevices();
  _loadRecordingDevices();
  _loadVideoDevices();
  _loadForegroundMode();

  notifyListeners();
}