Files
TubeCards/lib/env.dart
2022-04-11 16:40:54 +02:00

15 lines
559 B
Dart

import 'package:envify/envify.dart';
part 'env.g.dart';
@Envify()
abstract class Env {
static const String revenueCatAppleApiKey = _Env.revenueCatAppleApiKey;
static const String revenueCatGoogleApiKey = _Env.revenueCatGoogleApiKey;
static const String azureSubscriptionKey = _Env.azureSubscriptionKey;
static const String unsplashAccessToken = _Env.unsplashAccessToken;
static const String sentryDSN = _Env.sentryDSN;
static const String amplitudeKeyProd = _Env.amplitudeKeyProd;
static const String amplitudeKeyDev = _Env.amplitudeKeyDev;
}