8 lines
210 B
Dart
8 lines
210 B
Dart
class DonationService {
|
|
static const String donationUrl = 'https://liberapay.com/edde746';
|
|
|
|
static bool get isEnabled {
|
|
return const bool.fromEnvironment('ENABLE_DONATIONS', defaultValue: false);
|
|
}
|
|
}
|