selfprivacy.org.app/lib/config/config.dart

19 lines
339 B
Dart
Raw Normal View History

2024-06-25 21:54:56 +00:00
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;
//
}