You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
229 B
15 lines
229 B
2 years ago
|
|
||
|
class DevEV {
|
||
|
static final DevEV _instance = DevEV._();
|
||
|
|
||
|
DevEV._();
|
||
|
|
||
|
static DevEV get instance => _instance;
|
||
|
|
||
|
bool dev = false;
|
||
|
|
||
|
void setEnvironment(context, {required bool environment}) {
|
||
|
dev = environment;
|
||
|
}
|
||
|
}
|