CloudBaseConfig constructor

CloudBaseConfig({
  1. String? env,
  2. String? envId,
  3. int? timeout,
  4. String? wxAppId,
  5. String? wxUniLink,
  6. Map<String, String>? appAccess,
})

Implementation

CloudBaseConfig(
    {this.env,
    this.envId,
    this.timeout,
    this.wxAppId,
    this.wxUniLink,
    this.appAccess}) {
  assert(env != null || envId != null);
  _adapt();
}