mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
7 lines
153 B
Dart
7 lines
153 B
Dart
part of '../spotify.dart';
|
|
|
|
// ignore: subtype_of_sealed_class
|
|
class AsyncLoadingNext<T> extends AsyncData<T> {
|
|
const AsyncLoadingNext(super.value);
|
|
}
|