9 lines
193 B
Dart
9 lines
193 B
Dart
class BaronSafeWebConfig {
|
|
const BaronSafeWebConfig._();
|
|
|
|
static const initialUrl = String.fromEnvironment(
|
|
'BARON_SAFE_WEB_URL',
|
|
defaultValue: 'https://safe.baron.hmac.kr',
|
|
);
|
|
}
|