part of '../spotify.dart'; extension PaginationExtension on AsyncValue { bool get isLoadingAndEmpty => value == null && isLoading; bool get isLoadingNextPage => value != null && isLoading; }