mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
9 lines
147 B
Dart
9 lines
147 B
Dart
import 'package:riverpod/riverpod.dart';
|
|
|
|
class LibraryAlbumsNotifier extends AsyncNotifier<void> {
|
|
@override
|
|
build() {
|
|
return null;
|
|
}
|
|
}
|