ShowCustomerCenter

Contract for launching the Customer Center.

Usage:

class MyActivity : ComponentActivity() {
private val customerCenter = registerForActivityResult(ShowCustomerCenter()) {
// Handle the dismissal
}

fun showCustomerCenter() {
customerCenter.launch()
}
}

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open override fun createIntent(context: Context, input: Unit): Intent
Link copied to clipboard
open override fun parseResult(resultCode: Int, intent: Intent?)