// GENERATED CODE - DO NOT MODIFY BY HAND part of 'stream.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** StreamTwitch _$StreamTwitchFromJson(Map json) => StreamTwitch( json['user_id'] as String, json['user_login'] as String, json['user_name'] as String, json['game_id'] as String, json['game_name'] as String, json['title'] as String, (json['viewer_count'] as num).toInt(), json['started_at'] as String, json['thumbnail_url'] as String, ); StreamsTwitch _$StreamsTwitchFromJson(Map json) => StreamsTwitch( (json['data'] as List) .map((e) => StreamTwitch.fromJson(e as Map)) .toList(), Map.from(json['pagination'] as Map), );