CaptureResult

sealed interface CaptureResult<out T>

Capture Result of taking picture or recording video.

See also

Inheritors

Types

Link copied to clipboard
data class Error(val throwable: Throwable) : CaptureResult<Nothing>
Link copied to clipboard
data class Success<T>(val data: T) : CaptureResult<T>