NamedUrl

class NamedUrl(var key: String? = null, var url: String? = null)

Represents a named URL, typically used for associating a key (e.g., "terms_and_conditions") with its corresponding web address.

Constructors

Link copied to clipboard
constructor(key: String? = null, url: String? = null)

Properties

Link copied to clipboard
var key: String?

A unique identifier or name for the URL.

Link copied to clipboard
var url: String?

The actual web address.

Functions

Link copied to clipboard
open override fun toString(): String