From c156fea3605180b18ffaafbd1c6ef9da77b61ba4 Mon Sep 17 00:00:00 2001 From: zhoucheng Date: Mon, 9 Dec 2024 21:14:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=BC=BA=E5=A4=B1=E7=9A=84?= =?UTF-8?q?=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/variables/remote_var.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/variables/remote_var.dart b/lib/variables/remote_var.dart index 0826faa..100a673 100644 --- a/lib/variables/remote_var.dart +++ b/lib/variables/remote_var.dart @@ -10,9 +10,11 @@ class WsData{ bool isPlay=false; String mode=""; String lyric=""; + String artist=""; void updateAll( String title, + String artist, String cover, int line, List fullLyric, @@ -21,6 +23,7 @@ class WsData{ String lyric, ) { this.title = title; + this.artist=artist; this.cover = cover; this.line = line; this.fullLyric = fullLyric;