Storage constructor

Storage(
  1. String applicationUrl,
  2. MocoOpts? opt,
  3. HttpRequestClass httpClient
)

Implementation

Storage(String applicationUrl, MocoOpts? opt, HttpRequestClass httpClient ) {
  this.appsUrl = applicationUrl + "/services";
  this.client = httpClient;

  if(opt != null) {
    var a = opt.options!.payloadEncryption!.enforcement!.contains("COMMON");
    // print("STORAGE " + a.toString());
    this.encryptMode = a;
  }
}