OkHiAppConfiguration constructor
OkHiAppConfiguration({})
Implementation
OkHiAppConfiguration({
required this.branchId,
required this.clientKey,
required this.env,
}) {
if (env == OkHiEnv.prod) {
environmentRawValue = "prod";
}
if (env == OkHiEnv.dev) {
environmentRawValue = "dev";
}
}