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.
22 lines
532 B
22 lines
532 B
class MyAssets {
|
|
static const MyAssets _i = MyAssets._internal();
|
|
const MyAssets._internal();
|
|
factory MyAssets() => _i;
|
|
|
|
/// ----- Images -----
|
|
static const String sample = 'assets/image/sample.png';
|
|
|
|
/// ----- Svg -----
|
|
static const String sampleSvg = 'assets/image/sample.svg';
|
|
|
|
/// ----- Audios -----
|
|
static const String sampleAudio = 'assets/audio/sample.mp3';
|
|
|
|
/// ----- Videos -----
|
|
static const String sampleVideo = 'assets/video/sample.mp4';
|
|
|
|
|
|
static const List<String> images = [
|
|
sample,
|
|
];
|
|
}
|