You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
method @NonNull public static com.google.firebase.storage.StorageMetadata storageMetadata(@NonNull kotlin.jvm.functions.Function1<? super com.google.firebase.storage.StorageMetadata.Builder,kotlin.Unit> init);
22
23
}
23
24
25
+
public abstract class TaskState<T> {
26
+
}
27
+
28
+
public static final class TaskState.InProgress<T> extends com.google.firebase.storage.ktx.TaskState<T> {
29
+
ctor public TaskState.InProgress(@Nullable T snapshot);
30
+
method public T getSnapshot();
31
+
property public final T snapshot;
32
+
}
33
+
34
+
public static final class TaskState.Paused<T> extends com.google.firebase.storage.ktx.TaskState<T> {
35
+
ctor public TaskState.Paused(@Nullable T snapshot);
0 commit comments