mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-08-23 10:11:00 +08:00

* Remove unused fields from badges * Remove unused emote fields * Update emote tests * Remove unused channel fields * Remove unused stream fields * Remove unused user fields * Update tests
22 lines
686 B
Dart
22 lines
686 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'user.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
UserTwitch _$UserTwitchFromJson(Map<String, dynamic> json) => UserTwitch(
|
|
json['id'] as String,
|
|
json['login'] as String,
|
|
json['display_name'] as String,
|
|
json['profile_image_url'] as String,
|
|
);
|
|
|
|
UserBlockedTwitch _$UserBlockedTwitchFromJson(Map<String, dynamic> json) =>
|
|
UserBlockedTwitch(
|
|
json['user_id'] as String,
|
|
json['user_login'] as String,
|
|
json['display_name'] as String,
|
|
);
|