mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-05-20 16:06:25 +08:00

* dispose overlay timer * fix pip * add channel indicators to messages for shared chat sessions * add tooltip to chat message pfp * remove tooltip marign/padding * return null instead of throwing error * fix build error
23 lines
869 B
Dart
23 lines
869 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'shared_chat_session.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SharedChatSession _$SharedChatSessionFromJson(Map<String, dynamic> json) =>
|
|
SharedChatSession(
|
|
sessionId: json['session_id'] as String,
|
|
hostBroadcasterId: json['host_broadcaster_id'] as String,
|
|
participants: (json['participants'] as List<dynamic>)
|
|
.map((e) => Participant.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
createdAt: json['created_at'] as String,
|
|
updatedAt: json['updated_at'] as String,
|
|
);
|
|
|
|
Participant _$ParticipantFromJson(Map<String, dynamic> json) => Participant(
|
|
broadcasterId: json['broadcaster_id'] as String,
|
|
);
|