mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-11 03:03:18 +00:00
19 lines
339 B
Dart
19 lines
339 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
/// internal app configuration
|
|
const config = InternalConfig(
|
|
shouldDebugPrint: kDebugMode,
|
|
);
|
|
|
|
class InternalConfig {
|
|
const InternalConfig({
|
|
required this.shouldDebugPrint,
|
|
});
|
|
|
|
final bool shouldDebugPrint;
|
|
|
|
// example of other possible fields
|
|
// final String appVersion;
|
|
//
|
|
}
|