123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import 'package:domain/generated/json/base/json_convert_content.dart';
- import 'package:domain/entity/property_news_entity.dart';
- PropertyNewsEntity $PropertyNewsEntityFromJson(Map<String, dynamic> json) {
- final PropertyNewsEntity propertyNewsEntity = PropertyNewsEntity();
- final int? count = jsonConvert.convert<int>(json['count']);
- if (count != null) {
- propertyNewsEntity.count = count;
- }
- final int? page = jsonConvert.convert<int>(json['page']);
- if (page != null) {
- propertyNewsEntity.page = page;
- }
- final int? limit = jsonConvert.convert<int>(json['limit']);
- if (limit != null) {
- propertyNewsEntity.limit = limit;
- }
- final int? countPage = jsonConvert.convert<int>(json['count_page']);
- if (countPage != null) {
- propertyNewsEntity.countPage = countPage;
- }
- final List<PropertyNewsList>? list = (json['list'] as List<dynamic>?)?.map(
- (e) => jsonConvert.convert<PropertyNewsList>(e) as PropertyNewsList).toList();
- if (list != null) {
- propertyNewsEntity.list = list;
- }
- return propertyNewsEntity;
- }
- Map<String, dynamic> $PropertyNewsEntityToJson(PropertyNewsEntity entity) {
- final Map<String, dynamic> data = <String, dynamic>{};
- data['count'] = entity.count;
- data['page'] = entity.page;
- data['limit'] = entity.limit;
- data['count_page'] = entity.countPage;
- data['list'] = entity.list?.map((v) => v.toJson()).toList();
- return data;
- }
- extension PropertyNewsEntityExtension on PropertyNewsEntity {
- PropertyNewsEntity copyWith({
- int? count,
- int? page,
- int? limit,
- int? countPage,
- List<PropertyNewsList>? list,
- }) {
- return PropertyNewsEntity()
- ..count = count ?? this.count
- ..page = page ?? this.page
- ..limit = limit ?? this.limit
- ..countPage = countPage ?? this.countPage
- ..list = list ?? this.list;
- }
- }
- PropertyNewsList $PropertyNewsListFromJson(Map<String, dynamic> json) {
- final PropertyNewsList propertyNewsList = PropertyNewsList();
- final int? id = jsonConvert.convert<int>(json['id']);
- if (id != null) {
- propertyNewsList.id = id;
- }
- final String? title = jsonConvert.convert<String>(json['title']);
- if (title != null) {
- propertyNewsList.title = title;
- }
- final String? coverImage = jsonConvert.convert<String>(json['cover_image']);
- if (coverImage != null) {
- propertyNewsList.coverImage = coverImage;
- }
- final String? content = jsonConvert.convert<String>(json['content']);
- if (content != null) {
- propertyNewsList.content = content;
- }
- final int? likesCount = jsonConvert.convert<int>(json['likes_count']);
- if (likesCount != null) {
- propertyNewsList.likesCount = likesCount;
- }
- final bool? liked = jsonConvert.convert<bool>(json['liked']);
- if (liked != null) {
- propertyNewsList.liked = liked;
- }
- final String? createdAt = jsonConvert.convert<String>(json['created_at']);
- if (createdAt != null) {
- propertyNewsList.createdAt = createdAt;
- }
- return propertyNewsList;
- }
- Map<String, dynamic> $PropertyNewsListToJson(PropertyNewsList entity) {
- final Map<String, dynamic> data = <String, dynamic>{};
- data['id'] = entity.id;
- data['title'] = entity.title;
- data['cover_image'] = entity.coverImage;
- data['content'] = entity.content;
- data['likes_count'] = entity.likesCount;
- data['liked'] = entity.liked;
- data['created_at'] = entity.createdAt;
- return data;
- }
- extension PropertyNewsListExtension on PropertyNewsList {
- PropertyNewsList copyWith({
- int? id,
- String? title,
- String? coverImage,
- String? content,
- int? likesCount,
- bool? liked,
- String? createdAt,
- }) {
- return PropertyNewsList()
- ..id = id ?? this.id
- ..title = title ?? this.title
- ..coverImage = coverImage ?? this.coverImage
- ..content = content ?? this.content
- ..likesCount = likesCount ?? this.likesCount
- ..liked = liked ?? this.liked
- ..createdAt = createdAt ?? this.createdAt;
- }
- }
|