summaryrefslogtreecommitdiffstats
path: root/lib/class.dart
diff options
context:
space:
mode:
authorHritik Chouhan <hritikc3961@gmail.com>2022-09-01 23:40:02 +0200
committerHritik Chouhan <hritikc3961@gmail.com>2022-09-10 19:40:25 +0200
commit1698dd7db75dadb4915e1b48f0f974b804a019f8 (patch)
tree22d1376bb92b753936b43f04aba9a65e773c3c64 /lib/class.dart
parent85b78ad4577b65d0bfd398cf3723f83a5ee03dd9 (diff)
Upload Flutter-MediaPlayer app for IVIlamprey_12.1.6lamprey/12.1.612.1.6
Flutter MediaPlayer app which play song directly from MPD server connected via TCP socket.Functions included in mediaplayer play/pause/next/previous/loop , progress bar for current song,playlist from database , volume. Removed Unused code. Bug-AGL: SPEC-4549 Signed-off-by: Hritik Chouhan <hritikc3961@gmail.com> Change-Id: Ie7cdf109bca266e48fd10cd9b3cc0178edf42a52
Diffstat (limited to 'lib/class.dart')
-rw-r--r--lib/class.dart30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/class.dart b/lib/class.dart
new file mode 100644
index 0000000..5aa74cf
--- /dev/null
+++ b/lib/class.dart
@@ -0,0 +1,30 @@
+// SPDX-License-Identifier: Apache-2.0
+
+import 'dart:core';
+
+class CurrentSong{
+ CurrentSong({required this.title, required this.artist, required this.duration, required this.isPlaying, required this.time});
+
+ final String title;
+ final String artist;
+ final String duration;
+ final bool isPlaying;
+ final String time;
+
+ CurrentSong copyWith({
+ String ? title,
+ String ? artist,
+ String ? duration,
+ bool ? isPlaying,
+ String? time,
+ }){
+ return CurrentSong(artist: artist ?? this.artist,
+ title: title ?? this.title,
+ duration: duration ?? this.duration,
+ isPlaying: isPlaying ?? this.isPlaying,
+ time: time ?? this.time,
+ );
+ }
+
+}
+