6 lines
62 B
Dart
6 lines
62 B
Dart
|
enum PlaybackState {
|
||
|
none,
|
||
|
playing,
|
||
|
paused,
|
||
|
stopped,
|
||
|
}
|