2023-05-11 22:24:25 +00:00
|
|
|
abstract class Assets {
|
|
|
|
static const svg = _SVG();
|
|
|
|
static const png = _PNG();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PNG {
|
|
|
|
const _PNG();
|
|
|
|
|
2023-05-12 22:22:37 +00:00
|
|
|
String get drifterPNG => "assets/images/logo/drifter_vector.png";
|
2023-05-11 22:24:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class _SVG {
|
|
|
|
const _SVG();
|
|
|
|
|
|
|
|
String get drifterIcon => "assets/images/logo/drifter_logo_circle.svg";
|
2023-05-16 00:33:32 +00:00
|
|
|
String get x => "assets/images/svg/x.svg";
|
2023-05-11 22:24:25 +00:00
|
|
|
}
|