mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
7 lines
202 B
Dart
7 lines
202 B
Dart
part of '../spotify.dart';
|
|
|
|
extension PaginationExtension<T> on AsyncValue<T> {
|
|
bool get isLoadingAndEmpty => value == null && isLoading;
|
|
bool get isLoadingNextPage => value != null && isLoading;
|
|
}
|