Package-level declarations

Functions

Link copied to clipboard
fun Address(    countryCode: String,     streetAddress: String? = null,     city: String? = null,     state: String? = null,     zipCode: String? = null,     dependentLocality: String? = null): Address
fun Address(    countryCode: String,     streetAddress: String? = null,     city: String? = null,     state: String? = null,     zipCode: String? = null,     dependentLocality: String? = null): Address

Creates a new instance of Address with the given parameters.

Link copied to clipboard
fun UserDataProfile(    address: Address,     email: String? = null,     company: String? = null,     fullName: String? = null,     phoneNumber: String? = null): UserDataProfile
fun UserDataProfile(    address: Address,     email: String? = null,     company: String? = null,     fullName: String? = null,     phoneNumber: String? = null): UserDataProfile

Creates a new instance of UserDataProfile with the given parameters.