run method
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));
}
}