home logic added
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
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?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$TenderModelToJson(_TenderModel instance) =>
|
||||
<String, dynamic>{
|
||||
'created_time': instance.createdTime,
|
||||
'tender_id': instance.tenderId,
|
||||
'status': instance.status,
|
||||
'title': instance.title,
|
||||
'description': instance.description,
|
||||
'location': instance.location,
|
||||
'type': instance.type,
|
||||
};
|
||||
Reference in New Issue
Block a user