You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
292 B
8 lines
292 B
class MyAnimations {
|
|
static const MyAnimations _i = MyAnimations._internal();
|
|
const MyAnimations._internal();
|
|
factory MyAnimations() => _i;
|
|
|
|
static const String confetti = 'assets/animations/confetti.json';
|
|
static const String lightPurple = 'assets/animations/lights_purple.json';
|
|
}
|