DropInResult

sealed class DropInResult

A class that contains the final result of Drop-in.

Inheritors

Types

Link copied to clipboard

Drop-in was dismissed by the user before it has completed.

Link copied to clipboard
class Error(val reason: String?) : DropInResult

Drop-in has encountered an error.

Link copied to clipboard
class Finished(val result: String) : DropInResult

Drop-in has completed. This occurs after returning DropInServiceResult.Finished in your implementation of DropInService.