feat : request and request tagging

This commit is contained in:
2025-05-25 16:54:43 +03:30
parent 276c8dd1fe
commit 45778a9866
23 changed files with 655 additions and 145 deletions

View File

@@ -84,6 +84,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/picture_frame.svg
SvgGenImage get pictureFrame => const SvgGenImage('assets/icons/picture_frame.svg');
/// File path: assets/icons/place_holder.svg
SvgGenImage get placeHolder => const SvgGenImage('assets/icons/place_holder.svg');
/// File path: assets/icons/profile_circle.svg
SvgGenImage get profileCircle => const SvgGenImage('assets/icons/profile_circle.svg');
@@ -145,6 +148,7 @@ class $AssetsIconsGen {
messageAdd,
pdfDownload,
pictureFrame,
placeHolder,
profileCircle,
profileUser,
receiptDiscount,
@@ -169,8 +173,11 @@ class $AssetsImagesGen {
/// File path: assets/images/outter_splash.webp
AssetGenImage get outterSplash => const AssetGenImage('assets/images/outter_splash.webp');
/// File path: assets/images/place_holder.png
AssetGenImage get placeHolder => const AssetGenImage('assets/images/place_holder.png');
/// List of all assets
List<AssetGenImage> get values => [innerSplash, outterSplash];
List<AssetGenImage> get values => [innerSplash, outterSplash, placeHolder];
}
class $AssetsVecGen {