mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 23:06:21 +01:00
15 lines
214 B
Dart
15 lines
214 B
Dart
/// Experimental feature flags
|
|
class Lab {
|
|
factory Lab() {
|
|
if (_inst == null) {
|
|
_inst = Lab._();
|
|
}
|
|
return _inst!;
|
|
}
|
|
|
|
bool get enableSharedAlbum => false;
|
|
|
|
Lab._();
|
|
|
|
static Lab? _inst;
|
|
}
|