run method

void run(
  1. String appId,
  2. bool asPlaystore
)

Implementation

void run(String appId, bool asPlaystore) async {
  appId = appId.toUpperCase();
  var app = await appRepository()!.get(appId);
  if (app == null) {
    print("App with appId '$appId' does not exist");
  } else {
    runApp(Apis.apis()
        .getRegistryApi()
        .application(app: app, asPlaystore: asPlaystore));
  }
}