Cloudstream
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
Cloudstream
Library
/
com.lagradost.cloudstream3.mvvm
/
Resource
Resource
common
sealed
class
Resource
<
out
T
>
(
source
)
Inheritors
Success
Failure
Loading
Members
Constructors
Resource
Link copied to clipboard
common
protected
constructor
(
)
Types
Companion
Link copied to clipboard
common
object
Companion
Failure
Link copied to clipboard
common
data
class
Failure
(
val
isNetworkError
:
Boolean
,
val
errorString
:
String
)
:
Resource
<
Nothing
>
Loading
Link copied to clipboard
common
data
class
Loading
(
val
url
:
String
?
=
null
)
:
Resource
<
Nothing
>
Success
Link copied to clipboard
common
data
class
Success
<
out
T
>
(
val
value
:
T
)
:
Resource
<
T
>