mirror of
https://github.com/hanskokx/arcane_implementations.git
synced 2026-05-14 10:29:04 +02:00
c7ed42b1c7
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
14 lines
411 B
Dart
14 lines
411 B
Dart
enum Feature {
|
|
/// Prints the current auth token to the debug log each time the API makes a
|
|
/// request.
|
|
debugPrintAuthToken(kDebugMode),
|
|
;
|
|
|
|
/// Determines whether the given [Feature] is enabled by default when the
|
|
/// application launches. Features can be enabled or disabled during runtime,
|
|
/// regardless of this value.
|
|
final bool enabledAtStartup;
|
|
|
|
const Feature(this.enabledAtStartup);
|
|
}
|