whatIfHasDeepLinkUri

inline fun Activity.whatIfHasDeepLinkUri(whatIf: (Uri) -> Unit)

An expression for invoking whatIf when the Activity's intent deep link uri is not null and not empty.

Parameters

whatIf

An executable lambda function if the Activity's extra data is not null.


inline fun Activity.whatIfHasDeepLinkUri(whatIf: (Uri) -> Unit, whatIfNot: () -> Unit)

An expression for invoking whatIf when the Activity's intent deep link uri is not null and not empty. If the intent deep link uri is null or empty, whatIfNot will be invoked instead of the whatIf.

Parameters

whatIf

An executable lambda function if the Activity's deep link uri is not null.

whatIfNot

An executable lambda function if the Activity's deep link uri is null.