// GENERATED CODE - DO NOT MODIFY BY HAND part of 'news.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$NewsImpl _$$NewsImplFromJson(Map json) => _$NewsImpl( title: json['title'] as String?, teaserImage: json['teaserImage'] == null ? null : TeaserImage.fromJson(json['teaserImage'] as Map), brandingImage: json['brandingImage'] == null ? null : TeaserImage.fromJson(json['brandingImage'] as Map), date: json['date'] as String?, type: json['type'] as String?, ); Map _$$NewsImplToJson(_$NewsImpl instance) => { 'title': instance.title, 'teaserImage': instance.teaserImage, 'brandingImage': instance.brandingImage, 'date': instance.date, 'type': instance.type, };