mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
6 lines
161 B
Dart
6 lines
161 B
Dart
part of '../spotify.dart';
|
|
|
|
extension PaginationExtension<T> on AsyncValue<T> {
|
|
bool get isLoadingNextPage => this is AsyncData && this is AsyncLoadingNext;
|
|
}
|