newInstance static method
Implementation
static Future<ResourceManager> newInstance(SystemManager systemManager, Config config) async {
return ResourceManager(
systemManager,
await ApplicationStorage.newInstance(),
await DeviceStorage.newInstance(config),
await SessionStorage.newInstance(config),
await VolatileStorage.newInstance()
);
}