23 lines
740 B
Dart
23 lines
740 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'news_dto.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
NewsDto _$NewsDtoFromJson(Map<String, dynamic> json) => NewsDto(
|
|
data: (json['Главное'] as List<dynamic>?)
|
|
?.map((e) => NewAttributesDataDto.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
|
|
|
|
NewAttributesDataDto _$NewAttributesDataDtoFromJson(
|
|
Map<String, dynamic> json) =>
|
|
NewAttributesDataDto(
|
|
title: json['title'] as String?,
|
|
summary: json['summary'] as String?,
|
|
imagelink: json['image_link'] as String?,
|
|
);
|