| 12345678910111213141516171819 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'daily_keyword_response.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- DailyKeywordResponse _$DailyKeywordResponseFromJson(
- Map<String, dynamic> json) =>
- DailyKeywordResponse(
- list: (json['list'] as List<dynamic>?)?.map((e) => e as String).toList(),
- );
- Map<String, dynamic> _$DailyKeywordResponseToJson(
- DailyKeywordResponse instance) =>
- <String, dynamic>{
- 'list': instance.list,
- };
|