Fonts

data class Fonts(regular: Fonts.Regular?) : Parcelable

A model representing all fonts that can be passed to the SPA for use. See the contents of Regular for specifics. Note: Fonts included here are not used by native components.

Constructors

Fonts
Link copied to clipboard
fun Fonts(regular: Fonts.Regular? = null)

Types

Regular
Link copied to clipboard
data class Regular(family: String?, url: String?) : Parcelable
Wrapper model to include all types of fonts that can be provided

Properties

regular
Link copied to clipboard
@SerializedName(value = regular)
val regular: Fonts.Regular? = null