selectStorage static method

Future<void> selectStorage()

Implementation

static Future<void> selectStorage() async {
  // if (HycopFactory.serverType == ServerType.appwrite) {  // light version
  //   storage = AppwriteStorage();
  // } else {
    storage = FirebaseAppStorage();
  //}
  await storage!.initialize();
  return;
}