Files
frosty/lib/constants/constants.dart
2022-01-11 13:04:37 -05:00

21 lines
436 B
Dart

/// Twitch API client ID.
const clientId = String.fromEnvironment('CLIENT_ID');
/// Twitch API client secret.
const secret = String.fromEnvironment('SECRET');
/// The current version of the app.
const version = '1.0.0-beta+4';
/// BTTV emotes with zero width to allow for overlaying other emotes.
const zeroWidthEmotes = [
"SoSnowy",
"IceCold",
"SantaHat",
"TopHat",
"ReinDeer",
"CandyCane",
"cvMask",
"cvHazmat",
];