MetaverseSDK / io.gometa.sdk / Result / Loading
Loading
data class Loading<out T> : Result<T>
Reports a loading state for a pending result.
Constructors
| <init> | Loading(progress: Float? = null)Reports a loading state for a pending result. |
Properties
| isDone | val isDone: BooleanWhether or not this result reports a completed operation |
| progress | val progress: Float?The progress of the operation 0,1. This value may be null if the operation progress cannot be measured. |