StyleImpl

data class StyleImpl(val fontColor: String? = null, val backgroundColor: String? = null, val fontSize: Style.Size? = null, val alignment: Style.Alignment? = null, val fontStyle: Style.FontStyle? = null, var span: Spanned? = null) : Style

A text style is used to define the appearance of the text in the push notification. span is the rendered HTML of the text.

Constructors

Link copied to clipboard
constructor(fontColor: String? = null, backgroundColor: String? = null, fontSize: Style.Size? = null, alignment: Style.Alignment? = null, fontStyle: Style.FontStyle? = null, span: Spanned? = null)

Properties

Link copied to clipboard
open override val alignment: Style.Alignment?
Link copied to clipboard
open override val backgroundColor: String?
Link copied to clipboard
open override val fontColor: String?
Link copied to clipboard
open override val fontSize: Style.Size?
Link copied to clipboard
open override val fontStyle: Style.FontStyle?
Link copied to clipboard