21 lines
811 B
Dart
21 lines
811 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'fribb_mapping_row.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
FribbMappingRow _$FribbMappingRowFromJson(Map<String, dynamic> json) =>
|
|
FribbMappingRow(
|
|
anilistId: flexibleInt(json['anilist_id']),
|
|
imdbId: json['imdb_id'] as String?,
|
|
malId: flexibleInt(json['mal_id']),
|
|
simklId: flexibleInt(json['simkl_id']),
|
|
tmdbId: flexibleInt(json['themoviedb_id']),
|
|
tvdbId: flexibleInt(json['tvdb_id']),
|
|
tvdbSeason: flexibleInt(_readTvdbSeason(json, 'tvdbSeason')),
|
|
tmdbSeason: flexibleInt(_readTmdbSeason(json, 'tmdbSeason')),
|
|
type: json['type'] as String?,
|
|
);
|