|
/// App configuration constants
|
|
class AppConfig {
|
|
static const String appName = 'inou';
|
|
static const String webAppUrl = 'https://inou.com/app';
|
|
|
|
// Feature flags
|
|
static const bool enableOcr = true;
|
|
static const bool enableVoice = true;
|
|
static const bool enableBiometrics = true;
|
|
}
|