whatIfHasDeepLinkUri
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)
Content copied to clipboard
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.