mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
update live title update live watchedshow Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
12 lines
212 B
Dart
12 lines
212 B
Dart
class WatchedShow {
|
|
String? textLarge;
|
|
|
|
WatchedShow({
|
|
this.textLarge,
|
|
});
|
|
|
|
factory WatchedShow.fromJson(Map<String, dynamic> json) => WatchedShow(
|
|
textLarge: json['text_large'] as String?,
|
|
);
|
|
}
|