Added logic to YourTenders

This commit is contained in:
llsajjad
2025-08-11 15:52:13 +03:30
parent 79ea6f7b83
commit d10e0459ae
25 changed files with 1958 additions and 838 deletions
@@ -6,17 +6,18 @@ part of 'tender_model.dart';
// JsonSerializableGenerator
// **************************************************************************
_TenderModel _$TenderModelFromJson(Map<String, dynamic> json) => _TenderModel(
createdTime: json['created_time'] as String?,
tenderId: json['tender_id'] as String?,
status: json['status'] as String?,
title: json['title'] as String?,
description: json['description'] as String?,
location: json['location'] as String?,
type: json['type'] as String?,
);
_$TenderModelImpl _$$TenderModelImplFromJson(Map<String, dynamic> json) =>
_$TenderModelImpl(
createdTime: json['created_time'] as String?,
tenderId: json['tender_id'] as String?,
status: json['status'] as String?,
title: json['title'] as String?,
description: json['description'] as String?,
location: json['location'] as String?,
type: json['type'] as String?,
);
Map<String, dynamic> _$TenderModelToJson(_TenderModel instance) =>
Map<String, dynamic> _$$TenderModelImplToJson(_$TenderModelImpl instance) =>
<String, dynamic>{
'created_time': instance.createdTime,
'tender_id': instance.tenderId,