7 lines
192 B
Dart
7 lines
192 B
Dart
/// Choosing this method because using proper state management would be an
|
|
/// overkill for the scope of this project.
|
|
class AudioState {
|
|
AudioState._();
|
|
static List<String> files = [];
|
|
}
|