added new response model for tenders
This commit is contained in:
+13
-1
@@ -35,6 +35,9 @@ class $AssetsIconsGen {
|
||||
/// File path: assets/icons/arrow-right.svg
|
||||
String get arrowRight => 'assets/icons/arrow-right.svg';
|
||||
|
||||
/// File path: assets/icons/arrow_down_small.svg
|
||||
String get arrowDownSmall => 'assets/icons/arrow_down_small.svg';
|
||||
|
||||
/// File path: assets/icons/arrows.svg
|
||||
String get arrows => 'assets/icons/arrows.svg';
|
||||
|
||||
@@ -129,6 +132,7 @@ class $AssetsIconsGen {
|
||||
arrowLeftSmall,
|
||||
arrowRightSmall,
|
||||
arrowRight,
|
||||
arrowDownSmall,
|
||||
arrows,
|
||||
calendar,
|
||||
closeCircle,
|
||||
@@ -163,6 +167,9 @@ class $AssetsIconsGen {
|
||||
class $AssetsPngsGen {
|
||||
const $AssetsPngsGen();
|
||||
|
||||
/// File path: assets/pngs/app_logo.png
|
||||
AssetGenImage get appLogo => const AssetGenImage('assets/pngs/app_logo.png');
|
||||
|
||||
/// File path: assets/pngs/forgot_password.png
|
||||
AssetGenImage get forgotPassword =>
|
||||
const AssetGenImage('assets/pngs/forgot_password.png');
|
||||
@@ -175,7 +182,12 @@ class $AssetsPngsGen {
|
||||
const AssetGenImage('assets/pngs/web_login_image.png');
|
||||
|
||||
/// List of all assets
|
||||
List<AssetGenImage> get values => [forgotPassword, logo, webLoginImage];
|
||||
List<AssetGenImage> get values => [
|
||||
appLogo,
|
||||
forgotPassword,
|
||||
logo,
|
||||
webLoginImage,
|
||||
];
|
||||
}
|
||||
|
||||
class $AssetsSvgsGen {
|
||||
|
||||
Reference in New Issue
Block a user