8 lines
100 B
Dart
8 lines
100 B
Dart
|
class AppConfig {
|
||
|
final bool debugMode;
|
||
|
|
||
|
const AppConfig({
|
||
|
required this.debugMode,
|
||
|
});
|
||
|
}
|